hobbes
a language, embedded compiler, and runtime for efficient dynamic expression evaluation, data storage and analysis
os.H
Go to the documentation of this file.
1 /************
2  * os : utility definitions to decide what OS we are building on and how to do some common things
3  ************/
4 
5 #ifndef HOBBES_UTIL_OS_HPP_INCLUDED
6 #define HOBBES_UTIL_OS_HPP_INCLUDED
7 
8 #if defined(__APPLE__) && defined(__MACH__)
9 #define BUILD_OSX
10 #else
11 #define BUILD_LINUX
12 #endif
13 
14 #endif
15