diff options
author | Stu Grossman <grossman@cygnus> | 1991-09-17 08:11:00 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1991-09-17 08:11:00 +0000 |
commit | 2f1cfaddf9e27b9764cbeb583acda5e0703c6f77 (patch) | |
tree | 87299f81085d6d8045661dc7890ab1eb3fe9aabf | |
parent | 2b88cafe02536e92e4e0a2182d424be2941026a3 (diff) | |
download | gdb-2f1cfaddf9e27b9764cbeb583acda5e0703c6f77.zip gdb-2f1cfaddf9e27b9764cbeb583acda5e0703c6f77.tar.gz gdb-2f1cfaddf9e27b9764cbeb583acda5e0703c6f77.tar.bz2 |
Whoops! Make that #ifndef USG, not #ifdef
-rw-r--r-- | gdb/coredep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/coredep.c b/gdb/coredep.c index e216eed..87011c4 100644 --- a/gdb/coredep.c +++ b/gdb/coredep.c @@ -32,7 +32,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <sys/file.h> #include <sys/stat.h> #include <sys/user.h> -#ifdef USG +#ifndef USG #include <sys/ptrace.h> #endif |