equal
deleted
inserted
replaced
7 #include <string.h> |
7 #include <string.h> |
8 #include <stdlib.h> |
8 #include <stdlib.h> |
9 |
9 |
10 // MacOS X will use an NSAlert to display failed assertaions since they're lost unless running from a terminal |
10 // MacOS X will use an NSAlert to display failed assertaions since they're lost unless running from a terminal |
11 // strgen always runs from terminal and don't need a window for asserts |
11 // strgen always runs from terminal and don't need a window for asserts |
12 #if !defined(__APPLE__) || defined(STRGEN) || defined(JAGUAR_CROSSCOMPILE) |
12 #if !defined(__APPLE__) || defined(STRGEN) |
13 # include <assert.h> |
13 # include <assert.h> |
14 #else |
14 #else |
15 # include "os/macosx/macos.h" |
15 # include "os/macosx/macos.h" |
16 #endif |
16 #endif |
17 |
17 |