TPT: Fix includes for OSX and BSD a75da2c4c3

This commit is contained in:
Simon Robertshaw
2012-06-12 16:05:02 +01:00
parent 573035ac10
commit 117b1fb5c4

View File

@@ -23,8 +23,10 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#if !defined(MACOSX) && !defined(BSD) #ifndef WIN32
#include <sys/param.h> #include <sys/param.h>
#endif
#if !defined(MACOSX) && !defined(BSD)
#include <malloc.h> #include <malloc.h>
#endif #endif
#include <time.h> #include <time.h>