blob: 90c5a8af6cf98d59451eb3de05acca42898950c8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#define USE_POSIX_TIME
#define DISABLE_XOPEN_NLS
#define HAS_TEST_AND_SET
#include <sys/mman.h> /* for msemaphore */
typedef msemaphore slock_t;
/* some platforms define __alpha, but not __alpha__ */
#if defined(__alpha) && !defined(__alpha__)
#define __alpha__
#endif
|