From: Matthias Kruk Date: Tue, 4 Feb 2020 12:37:00 +0000 (+0900) Subject: Change pid_t to be a signed integer, in accordance with IEEE Std 1003.1-2004 X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=b23c2e2404bce285dc35c01bd90801ecf37850ec;p=corax Change pid_t to be a signed integer, in accordance with IEEE Std 1003.1-2004 --- 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;