musl/include/sys/user.h
Gonzalo Alvarez 84015cee17 fix typo that broke sys/reg.h and sys/user.h
commit 7019fbe103165b9b26a9391d5ecd4c7fcb6f3ec9 and commit
e709a6f07ade208ba513f9225222336f30c304b0 misspelled bits/alltypes.h.
2024-05-11 17:52:04 -04:00

26 lines
334 B
C

#ifndef _SYS_USER_H
#define _SYS_USER_H
#ifdef __cplusplus
extern "C" {
#endif
#include <limits.h>
#include <stdint.h>
#include <unistd.h>
#include <bits/alltypes.h>
#undef __WORDSIZE
#if __LONG_MAX == 0x7fffffffL
#define __WORDSIZE 32
#else
#define __WORDSIZE 64
#endif
#include <bits/user.h>
#ifdef __cplusplus
}
#endif
#endif