master
1#ifndef _SYS_USER_H
2#define _SYS_USER_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7#include <limits.h>
8#include <stdint.h>
9#include <unistd.h>
10
11#include <bits/alltypes.h>
12
13#undef __WORDSIZE
14#if __LONG_MAX == 0x7fffffffL
15#define __WORDSIZE 32
16#else
17#define __WORDSIZE 64
18#endif
19
20#include <bits/user.h>
21
22#ifdef __cplusplus
23}
24#endif
25#endif