Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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
Generated on Tue Jul 12 2022 19:59:55 by
