darin | 276f427 | 2003-10-27 06:31:02 +0000 | [diff] [blame] | 1 | #ifdef __cplusplus |
| 2 | #define NULL __null |
| 3 | #else |
| 4 | #define NULL ((void *)0) |
| 5 | #endif |
| 6 | |
darin | ad4bde3 | 2002-05-06 23:40:45 +0000 | [diff] [blame] | 7 | #include <assert.h> |
| 8 | #include <ctype.h> |
vicki | f92901a | 2003-11-11 18:34:40 +0000 | [diff] [blame^] | 9 | #include <sys/types.h> |
darin | ad4bde3 | 2002-05-06 23:40:45 +0000 | [diff] [blame] | 10 | #include <fcntl.h> |
darin | 767b371 | 2003-01-13 05:53:59 +0000 | [diff] [blame] | 11 | #include <pthread.h> |
darin | ad4bde3 | 2002-05-06 23:40:45 +0000 | [diff] [blame] | 12 | #include <regex.h> |
| 13 | #include <setjmp.h> |
| 14 | #include <signal.h> |
| 15 | #include <stdarg.h> |
| 16 | #include <stddef.h> |
| 17 | #include <stdio.h> |
| 18 | #include <stdlib.h> |
| 19 | #include <string.h> |
darin | 767b371 | 2003-01-13 05:53:59 +0000 | [diff] [blame] | 20 | #include <time.h> |
darin | ad4bde3 | 2002-05-06 23:40:45 +0000 | [diff] [blame] | 21 | #include <unistd.h> |
| 22 | |
| 23 | #ifdef __cplusplus |
| 24 | |
darin | 767b371 | 2003-01-13 05:53:59 +0000 | [diff] [blame] | 25 | #include <algorithm> |
darin | ad4bde3 | 2002-05-06 23:40:45 +0000 | [diff] [blame] | 26 | #include <cstddef> |
darin | ad4bde3 | 2002-05-06 23:40:45 +0000 | [diff] [blame] | 27 | #include <new> |
| 28 | |
darin | a7a6c3c | 2002-06-14 23:15:53 +0000 | [diff] [blame] | 29 | #ifndef NDEBUG |
| 30 | #include <ostream> |
| 31 | #endif |
| 32 | |
darin | ad4bde3 | 2002-05-06 23:40:45 +0000 | [diff] [blame] | 33 | #endif |
| 34 | |
| 35 | #include <sys/types.h> |
| 36 | #include <sys/param.h> |
| 37 | #include <sys/stat.h> |
kocienda | e98828e | 2002-05-21 14:50:11 +0000 | [diff] [blame] | 38 | #include <sys/time.h> |
| 39 | #include <sys/resource.h> |
| 40 | |
darin | ad4bde3 | 2002-05-06 23:40:45 +0000 | [diff] [blame] | 41 | #include <time.h> |
| 42 | |
| 43 | #include <CoreFoundation/CoreFoundation.h> |
| 44 | #include <CoreServices/CoreServices.h> |
| 45 | |
| 46 | #ifdef __OBJC__ |
| 47 | |
darin | ad4bde3 | 2002-05-06 23:40:45 +0000 | [diff] [blame] | 48 | #import <Cocoa/Cocoa.h> |
| 49 | |
| 50 | #endif |