blob: 2c1c6e55c9affbd546bc8a8108ed94b76ae647d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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
|