Various fixes (mostly making things more strict) to get the code to

compile on Mac OS X
This commit is contained in:
Eric Scharff
2007-09-19 10:22:19 -06:00
parent 8b17df5b48
commit f430f3f00e
9 changed files with 37 additions and 16 deletions

View File

@ -11,11 +11,14 @@
#ifdef __i386__
# define LD "d"
# define ULD "lu"
# define LLD "lld"
#elif defined __x86_64__
# define LD "ld"
# define ULD "lu"
# define LLD "ld"
# define LLD "ld"
#else
#error "Unsupported architecture"
#endif
#define NO_RETURN __attribute__((noreturn))