소스 검색

fix prototype for 64bit hosts

Mike Frysinger 20 년 전
부모
커밋
6d85734a6e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      libc/sysdeps/linux/common/prctl.c

+ 2 - 2
libc/sysdeps/linux/common/prctl.c

@@ -10,5 +10,5 @@
 #include "syscalls.h"
 #include <stdarg.h>
 /* psm: including sys/prctl.h would depend on kernel headers */
-extern int prctl (int, int, int, int, int);
-_syscall5(int, prctl, int, a, int, b, int, c, int, d, int, e);
+extern int prctl (int, long, long, long, long);
+_syscall5(int, prctl, int, option, long, arg2, long, arg3, long, arg4, long, arg5);