From b23c2e2404bce285dc35c01bd90801ecf37850ec Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Tue, 4 Feb 2020 21:37:00 +0900 Subject: [PATCH] Change pid_t to be a signed integer, in accordance with IEEE Std 1003.1-2004 --- include/corax/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/corax/types.h b/include/corax/types.h index d0a4272..119dfe1 100644 --- a/include/corax/types.h +++ b/include/corax/types.h @@ -33,7 +33,7 @@ typedef signed long long int i64_t; #define FALSE 0 #define TRUE (!FALSE) -typedef u32_t pid_t; +typedef i32_t pid_t; typedef u32_t uid_t; typedef u32_t gid_t; -- 2.47.3