diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-01-28 18:56:15 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-01-28 18:56:15 +0000 |
commit | fa8666c7913d7a974559beb2828e4597aab5feef (patch) | |
tree | 9da9223cf921008a1c5084a6cde4455d6fa7b6c8 | |
parent | 8fb6931a285365089b3e285f13c2f54fcba2a41c (diff) | |
download | gdb-fa8666c7913d7a974559beb2828e4597aab5feef.zip gdb-fa8666c7913d7a974559beb2828e4597aab5feef.tar.gz gdb-fa8666c7913d7a974559beb2828e4597aab5feef.tar.bz2 |
Wed Jan 28 13:54:50 1998 Pat Rankin <rankin@eql.caltech.edu>
as.h (unlink): Reverse 13-Feb-97 change; use of unlink vs remove
depends upon HAVE_{UNLINK,REMOVE} values rather than host
compiler.
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/as.h | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 3d3edd3..25b5375 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +Wed Jan 28 13:54:50 1998 Pat Rankin <rankin@eql.caltech.edu> + + as.h (unlink): Reverse 13-Feb-97 change; use of unlink vs remove + depends upon HAVE_{UNLINK,REMOVE} values rather than host + compiler. + Wed Jan 28 13:48:08 1998 Ian Lance Taylor <ian@cygnus.com> * config/obj-coff.h (RESOLVE_SYMBOL_REDEFINITION): Define. @@ -1,5 +1,5 @@ /* as.h - global header file - Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 1997 + Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -168,8 +168,8 @@ extern void free (); extern int errno; #endif -/* This is needed for VMS with DEC C. */ -#if ! defined (__GNUC__) && ! defined (HAVE_UNLINK) && defined (HAVE_REMOVE) +/* This is needed for VMS. */ +#if ! defined (HAVE_UNLINK) && defined (HAVE_REMOVE) #define unlink remove #endif |