Skip to content

Commit

Permalink
Merge pull request #58 from guitorri/osx-headers
Browse files Browse the repository at this point in the history
fix compilation errors, OSX 10.6-10.9
  • Loading branch information
Swordfish90 committed Aug 3, 2014
2 parents d3d1407 + 2f11060 commit e9e3732
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion konsole-qml-plugin/src/utmpmac.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#if defined (__APPLE__)
# include <utmp.h>
#include <utmp.h>

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <unistd.h>
#include <limits.h>
#include <fcntl.h>
#include <sys/stat.h>

struct utmp *getutent();
struct utmp *getutid( struct utmp * );
Expand Down

0 comments on commit e9e3732

Please sign in to comment.