Browse Source

tools/mkimage: Include sys/types.h on Darwin/BSD.

Signed-off-by: Andy Boyett <[email protected]>

SVN-Revision: 9658
Felix Fietkau 18 years ago
parent
commit
3a4d04f6ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/mkimage/src/mkimage.c

+ 1 - 1
tools/mkimage/src/mkimage.c

@@ -38,8 +38,8 @@
 
 #if defined(__BEOS__) || defined(__NetBSD__) || defined(__APPLE__)
 #include <inttypes.h>
+#include <sys/types.h>
 #endif
-
 #ifdef __WIN32__
 typedef unsigned int __u32;