Naveen Neel / shedskin
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers param.h Source File

param.h

00001 /*
00002  * param.h
00003  * This file has no copyright assigned and is placed in the Public Domain.
00004  * This file is a part of the mingw-runtime package.
00005  * No warranty is given; refer to the file DISCLAIMER within the package.
00006  *
00007  */
00008 
00009 #ifndef _SYS_PARAM_H
00010 #define _SYS_PARAM_H
00011 
00012 #include <sys/types.h>
00013 #include <limits.h>
00014 
00015 /* These are useful for cross-compiling */ 
00016 #define BIG_ENDIAN  4321
00017 #define LITTLE_ENDIAN   1234
00018 #define BYTE_ORDER  LITTLE_ENDIAN
00019 
00020 #define MAXPATHLEN PATH_MAX
00021 
00022 #endif