diff options
author | K. Richard Pixley <rich@cygnus> | 1992-12-08 04:59:31 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-12-08 04:59:31 +0000 |
commit | 43bbd567f2d928b2628e508ee9c75a3920e26b4d (patch) | |
tree | 21f1ab246e1a3f963e73c3662bc1d44f591349a1 /gas/strerror.c | |
parent | a362ee23634a2f9ce9642eab09592e8ff6ae509b (diff) | |
download | gdb-43bbd567f2d928b2628e508ee9c75a3920e26b4d.zip gdb-43bbd567f2d928b2628e508ee9c75a3920e26b4d.tar.gz gdb-43bbd567f2d928b2628e508ee9c75a3920e26b4d.tar.bz2 |
recording file death
Diffstat (limited to 'gas/strerror.c')
-rw-r--r-- | gas/strerror.c | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/gas/strerror.c b/gas/strerror.c deleted file mode 100644 index 0e3d7f9..0000000 --- a/gas/strerror.c +++ /dev/null @@ -1,61 +0,0 @@ -/* Version of strerror() for systems that need it. - Copyright (C) 1991, 1992 Free Software Foundation, Inc. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ - - -/* - -NAME - - strerror -- map an error number to an error message string - -SYNOPSIS - - #include <string.h> - - char *strerror (int errnum) - -DESCRIPTION - - Returns a pointer to a string containing an error message, the - contents of which are implementation defined. The implementation - shall behave as if no library function calls strerror. The string - pointed to shall not be modified by the caller and is only guaranteed - to be valid until a subsequent call to strerror. - -BUGS - - Requires that the system have sys_errlist and sys_nerr. - -*/ - -#ifndef HAVE_STRERROR - -extern int sys_nerr; -extern char *sys_errlist[]; - -char * -strerror (code) - int code; -{ - return (((code < 0) || (code >= sys_nerr)) - ? "(unknown error)" - : sys_errlist[code]); -} - -#endif /* HAVE_STRERROR */ - -/* end of strerror.c */ |