summaryrefslogtreecommitdiff
path: root/include/sys
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-07-30 13:04:31 -0400
committerRich Felker <dalias@aerifal.cx>2013-07-30 13:04:31 -0400
commit9932505b680c3890401c45ac782a61d94aa05071 (patch)
treee2ba4d257cbd2141b2d7e28504d1e073773076be /include/sys
parent48748143a34fb534e51378ec82816d7bbfb22df7 (diff)
downloadmusl-9932505b680c3890401c45ac782a61d94aa05071.tar.gz
fix some prctl macros that were incorrectly copied into this file
Diffstat (limited to 'include/sys')
-rw-r--r--include/sys/prctl.h6
1 files changed, 3 insertions, 3 deletions
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