mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-27 02:49:42 +00:00
Compiling on Mac OS X 10.2 doesn't define uint8_t using the standard headers.
Including stdint.h should be safe, but if it clashes, we could put an OS X specific wrapper around it: #if (defined(__MACH__) && defined(__APPLE__))
This commit is contained in:
parent
5d09d2b6c4
commit
641fa2c01e
@ -41,6 +41,9 @@ typedef char *caddr_t;
|
||||
#ifdef HAVE_SYS_BITYPES_H
|
||||
# include <sys/bitypes.h>
|
||||
#endif
|
||||
#ifdef HAVE_STDINT_H
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include <sys/time.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user