LibC: Make pthread_t pid_t

This commit is contained in:
Bananymous 2025-04-02 12:46:43 +03:00
parent b9cc6063ff
commit 28392050bf
2 changed files with 5 additions and 1 deletions

View File

@ -78,7 +78,7 @@ __BEGIN_DECLS
#if !defined(__pthread_t_defined) && (defined(__need_all_types) || defined(__need_pthread_t))
#define __pthread_t_defined 1
typedef int pthread_t;
typedef pid_t pthread_t;
#endif
#undef __need_pthread_t

View File

@ -132,6 +132,10 @@ __BEGIN_DECLS
#endif
#undef __need_off_t
#ifdef __need_pthread_t
#define __need_pid_t
#endif
#if !defined(__pid_t_defined) && (defined(__need_all_types) || defined(__need_pid_t))
#define __pid_t_defined 1
typedef int pid_t;