diff options
| author | Eric Andersen <andersen@codepoet.org> | 2001-02-09 05:42:54 +0000 | 
|---|---|---|
| committer | Eric Andersen <andersen@codepoet.org> | 2001-02-09 05:42:54 +0000 | 
| commit | d62d23b5e87a924caaed9d8189da5f50226c79cc (patch) | |
| tree | c1ae59ae8d66894f89a03793f82f59224ba9e649 | |
| parent | eb5667f0ce82995eacb0c6a86d76d83c8f881619 (diff) | |
| download | uClibc-alpine-d62d23b5e87a924caaed9d8189da5f50226c79cc.tar.bz2 uClibc-alpine-d62d23b5e87a924caaed9d8189da5f50226c79cc.tar.xz  | |
Doh!  I forgot a #ifdef such that ptrace ended up in each and every
syscall .o file.
 -Erik
| -rw-r--r-- | libc/sysdeps/linux/common/syscalls.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index d9ae26375..6b07fab5c 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -200,10 +200,12 @@ _syscall1(int, stime, time_t *, t);  #endif  //#define __NR_ptrace           26 +#ifdef L___ptrace  #include <sys/ptrace.h>  #define __NR___ptrace __NR_ptrace  _syscall4(long, __ptrace, enum __ptrace_request, request, pid_t, pid,  		void*, addr, void*, data); +#endif  //#define __NR_alarm            27  | 
