diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:09:34 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:09:34 +0000 |
commit | a87b3269340cca83c2197909ade48e28023b9cfd (patch) | |
tree | 70aaf742bce3e0cb67d7500523b91108cd3981cd /gas/config/ho-sunos.h | |
parent | 5b3fb530400928638f5a542f9bb8e37d7e4db8a9 (diff) | |
download | gdb-a87b3269340cca83c2197909ade48e28023b9cfd.zip gdb-a87b3269340cca83c2197909ade48e28023b9cfd.tar.gz gdb-a87b3269340cca83c2197909ade48e28023b9cfd.tar.bz2 |
White space and comment changes, and #ifdef __STDC__ becomes #if
__STDC__ == 1.
Diffstat (limited to 'gas/config/ho-sunos.h')
-rw-r--r-- | gas/config/ho-sunos.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gas/config/ho-sunos.h b/gas/config/ho-sunos.h index 9e0a413..52951a6 100644 --- a/gas/config/ho-sunos.h +++ b/gas/config/ho-sunos.h @@ -17,11 +17,11 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef __STDC__ +#if __STDC__ != 1 #define NO_STDARG #endif /* not __STDC__ */ -#if !defined(__GNUC__) & !defined(__STDC__) +#if !defined(__GNUC__) && (__STDC__ != 1) #include <memory.h> #else extern int memset(); @@ -35,23 +35,25 @@ extern int memset(); /* externs for system libraries. */ -extern char *strchr(); +/*extern int abort();*/ +/*extern int exit();*/ extern char *malloc(); extern char *realloc(); +extern char *strchr(); extern char *strrchr(); extern int _filbuf(); extern int _flsbuf(); -/*extern int abort();*/ extern int bcopy(); extern int bzero(); extern int bzero(); -/*extern int exit();*/ extern int fclose(); +extern int fgetc(); extern int fprintf(); extern int fread(); extern int free(); extern int perror(); extern int printf(); +extern int rewind(); extern int setvbuf(); extern int sscanf(); extern int strcmp(); @@ -61,6 +63,7 @@ extern int time(); extern int ungetc(); extern int vfprintf(); extern int vprintf(); +extern int vsprintf(); extern long atol(); #ifndef tolower |