musl/include/sys/user.h

26 lines
334 B
C
Raw Normal View History

2011-02-12 05:22:29 +00:00
#ifndef _SYS_USER_H
#define _SYS_USER_H
#ifdef __cplusplus
extern "C" {
#endif
#include <limits.h>
2011-09-23 18:24:57 +00:00
#include <stdint.h>
2011-02-12 05:22:29 +00:00
#include <unistd.h>
#include <bits/alltypes.h>
#undef __WORDSIZE
#if __LONG_MAX == 0x7fffffffL
#define __WORDSIZE 32
#else
#define __WORDSIZE 64
#endif
2011-02-12 05:22:29 +00:00
#include <bits/user.h>
#ifdef __cplusplus
}
#endif
#endif