소스 검색

fix some prctl macros that were incorrectly copied into this file

Rich Felker 11 년 전
부모
커밋
9932505b68
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      include/sys/prctl.h

+ 3 - 3
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