From: Rich Felker Date: Tue, 30 Jul 2013 17:04:31 +0000 (-0400) Subject: fix some prctl macros that were incorrectly copied into this file X-Git-Tag: v0.9.13~117 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9932505b680c3890401c45ac782a61d94aa05071;p=oweals%2Fmusl.git fix some prctl macros that were incorrectly copied into this file --- diff --git a/include/sys/prctl.h b/include/sys/prctl.h index d4069770..49b8d71f 100644 --- a/include/sys/prctl.h +++ b/include/sys/prctl.h @@ -39,9 +39,9 @@ extern "C" { #define PR_GET_NAME 16 #define PR_GET_ENDIAN 19 #define PR_SET_ENDIAN 20 -#define PR_ENDIAN_BIG -#define PR_ENDIAN_LITTLE -#define PR_ENDIAN_PPC_LITTLE +#define PR_ENDIAN_BIG 0 +#define PR_ENDIAN_LITTLE 1 +#define PR_ENDIAN_PPC_LITTLE 2 #define PR_GET_SECCOMP 21 #define PR_SET_SECCOMP 22 #define PR_CAPBSET_READ 23