diff options
author | Greg McGary <greg@mcgary.org> | 2000-07-06 16:58:19 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 2000-07-06 16:58:19 +0000 |
commit | 1055cf7c608768c2e2a264255877c0f9416d2821 (patch) | |
tree | 9b534259987123ce177e3555c66467b27d04a990 /sysdeps/unix/sysv/linux/sys/ptrace.h | |
parent | 71cebc12d3250413a4727dfda638ba1e852c0a96 (diff) | |
download | glibc-1055cf7c608768c2e2a264255877c0f9416d2821.tar.gz glibc-1055cf7c608768c2e2a264255877c0f9416d2821.tar.xz glibc-1055cf7c608768c2e2a264255877c0f9416d2821.zip |
* sysdeps/unix/sysv/linux/sys/ptrace.h (PT_SYSCALL): Fix LHS.
2000-07-06 Greg McGary <greg@mcgary.org> * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_SYSCALL): Fix LHS.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sys/ptrace.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/ptrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/ptrace.h b/sysdeps/unix/sysv/linux/sys/ptrace.h index d636eb4e5f..0a88082caf 100644 --- a/sysdeps/unix/sysv/linux/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/sys/ptrace.h @@ -110,7 +110,7 @@ enum __ptrace_request /* Continue and stop at the next (return from) syscall. */ PTRACE_SYSCALL = 24 -#define PTRACE_SYSCALL PTRACE_SYSCALL +#define PT_SYSCALL PTRACE_SYSCALL }; /* Perform process tracing functions. REQUEST is one of the values |