From 6d85734a6e8787aedd3207abf0e1c811d3dd3343 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 9 Feb 2006 05:40:55 +0000 Subject: fix prototype for 64bit hosts --- libc/sysdeps/linux/common/prctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps') diff --git a/libc/sysdeps/linux/common/prctl.c b/libc/sysdeps/linux/common/prctl.c index 479c9657a..52d1e76e0 100644 --- a/libc/sysdeps/linux/common/prctl.c +++ b/libc/sysdeps/linux/common/prctl.c @@ -10,5 +10,5 @@ #include "syscalls.h" #include /* 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); -- cgit v1.2.3