00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
#ifndef PI_Machine_h
00015 
#define PI_Machine_h
00016 
00017 
#if defined(unix) || defined(__unix) || defined(__unix__)
00018 
#define __IS_UNIX 1
00019 
#else
00020 #define __IS_UNIX 0
00021 
#endif
00022 
00023 
#ifdef __MSDOS__
00024 
#define __IS_MSDOS 1
00025 
#else
00026 #define __IS_MSDOS 0
00027 
#endif
00028 
00029 
#ifdef __MWERKS__
00030 
#define __IS_MAC 1
00031 
#else
00032 #define __IS_MAC 0
00033 
#endif
00034 
00035 
#if __IS_MSDOS 
00036 
typedef long int off_t;
00037 
#endif
00038 
00039 
#endif  
00040