1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
/*
* ident "$Header$"
*
* Copyright (c) 1991-2000 Silicon Graphics, Inc.
* This document is licensed under the SGI Free Software B license.
* For details, see
*
* http://oss.sgi.com/projects/FreeB
*
*/
/*
* defines to make gcc's -ansi more-or-less equivalent to SGI's -xansi
*/
#if defined(__i386__)
#define i386 1
#endif
#if defined(__linux__)
#define linux 1
#endif
#if defined(__unix__)
#define unix 1
#endif
#if !defined(_BSD_SOURCE)
#define _BSD_SOURCE 1
#endif
|