mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
Update libc
This commit is contained in:
parent
964d5fa2d0
commit
b10d76cd53
@ -10,6 +10,7 @@
|
|||||||
#endif // !PRIVATE
|
#endif // !PRIVATE
|
||||||
|
|
||||||
typedef int __pid_t;
|
typedef int __pid_t;
|
||||||
|
typedef int __ssize_t;
|
||||||
typedef unsigned int __id_t;
|
typedef unsigned int __id_t;
|
||||||
typedef unsigned int __useconds_t;
|
typedef unsigned int __useconds_t;
|
||||||
|
|
||||||
@ -28,4 +29,9 @@ typedef __useconds_t useconds_t;
|
|||||||
#define __useconds_t_defined
|
#define __useconds_t_defined
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef __ssize_t_defined
|
||||||
|
typedef __ssize_t ssize_t;
|
||||||
|
#define __ssize_t_defined
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -17,6 +17,13 @@ typedef struct
|
|||||||
|
|
||||||
#include <bits/waitstatus.h>
|
#include <bits/waitstatus.h>
|
||||||
|
|
||||||
|
#define WCONTINUED 1
|
||||||
|
#define WNOHANG 2
|
||||||
|
#define WUNTRACED 4
|
||||||
|
#define WEXITED 8
|
||||||
|
#define WNOWAIT 16
|
||||||
|
#define WSTOPPED 32
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Macro for extracting the exit status from a status value.
|
* @brief Macro for extracting the exit status from a status value.
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user