Make this easier to read.

This commit is contained in:
Steve Checkoway
2004-03-14 08:34:28 +00:00
parent 7fae7321b8
commit c4e6c0016f
@@ -13,16 +13,16 @@
#define scalb(x, n) scalbn(x, n) #define scalb(x, n) scalbn(x, n)
#endif #endif
#ifndef gamma #ifndef gamma
#define gamma(x) lgamma(x) # define gamma(x) lgamma(x)
#endif #endif
#ifndef _POSIX_SOURCE #ifndef _POSIX_SOURCE
#define _POSIX_SOURCE # define _POSIX_SOURCE
#define POSIX_DEFINED # define POSIX_DEFINED
#endif #endif
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
#ifdef POSIX_DEFINED #ifdef POSIX_DEFINED
#undef _POSIX_SOURCE # undef _POSIX_SOURCE
#undef POSIX_DEFINED # undef POSIX_DEFINED
#endif #endif