. also drop minix-specific code in libarchive that was needed for not supporting 64 bit ints
17 lines
388 B
C
17 lines
388 B
C
#ifndef _MINIX_ANSI_H
|
|
#define _MINIX_ANSI_H
|
|
|
|
#if __STDC__ == 1
|
|
#define _ANSI 31459 /* compiler claims full ANSI conformance */
|
|
#endif
|
|
|
|
#ifdef __GNUC__
|
|
#define _ANSI 31459 /* gcc conforms enough even in non-ANSI mode */
|
|
#endif
|
|
|
|
/* Setting of _POSIX_SOURCE (or _NETBSD_SOURCE) in NBSD headers is
|
|
* done in <sys/featuretest.h> */
|
|
#include <sys/featuretest.h>
|
|
|
|
#endif /* _MINIX_ANSI_H */
|