stdafx.h
changeset 2731 888a994e9fe9
parent 2730 80d65174e897
child 2889 461c25e6cc1b
equal deleted inserted replaced
2730:80d65174e897 2731:888a994e9fe9
     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