1992-02-13 09:49:39 +00:00
|
|
|
/* This file is ho-sunos.h
|
|
|
|
Copyright (C) 1987-1992 Free Software Foundation, Inc.
|
1992-11-23 20:42:33 +00:00
|
|
|
|
1992-02-13 09:49:39 +00:00
|
|
|
This file is part of GAS, the GNU Assembler.
|
1992-11-23 20:42:33 +00:00
|
|
|
|
1992-02-13 09:49:39 +00:00
|
|
|
GAS 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, or (at your option)
|
|
|
|
any later version.
|
1992-11-23 20:42:33 +00:00
|
|
|
|
1992-02-13 09:49:39 +00:00
|
|
|
GAS 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.
|
1992-11-23 20:42:33 +00:00
|
|
|
|
1992-02-13 09:49:39 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GAS; see the file COPYING. If not, write to
|
|
|
|
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
1992-02-15 21:09:34 +00:00
|
|
|
#if __STDC__ != 1
|
1991-04-04 18:19:53 +00:00
|
|
|
#define NO_STDARG
|
|
|
|
#endif /* not __STDC__ */
|
|
|
|
|
1992-02-15 21:09:34 +00:00
|
|
|
#if !defined(__GNUC__) && (__STDC__ != 1)
|
1991-05-18 02:15:32 +00:00
|
|
|
#include <memory.h>
|
1991-10-16 08:56:25 +00:00
|
|
|
#else
|
1993-07-30 01:40:25 +00:00
|
|
|
extern char* memset ();
|
1991-09-01 23:36:56 +00:00
|
|
|
#endif
|
1992-02-11 10:34:03 +00:00
|
|
|
|
|
|
|
/* #include <sys/stdtypes.h> before <stddef.h> when compiling by GCC. */
|
1992-12-28 18:38:10 +00:00
|
|
|
/* #include <sys/stdtypes.h> */
|
1992-01-21 22:14:16 +00:00
|
|
|
#include <stddef.h>
|
1991-04-04 18:19:53 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* externs for system libraries. */
|
|
|
|
|
1992-02-15 21:09:34 +00:00
|
|
|
/*extern int abort();*/
|
|
|
|
/*extern int exit();*/
|
1992-11-23 20:42:33 +00:00
|
|
|
extern char *malloc ();
|
|
|
|
extern char *realloc ();
|
|
|
|
extern char *strchr ();
|
|
|
|
extern char *strrchr ();
|
|
|
|
extern int _filbuf ();
|
|
|
|
extern int _flsbuf ();
|
|
|
|
extern int fclose ();
|
|
|
|
extern int fgetc ();
|
|
|
|
extern int fprintf ();
|
|
|
|
extern int free ();
|
|
|
|
extern int printf ();
|
|
|
|
extern int setvbuf ();
|
|
|
|
extern int sscanf ();
|
|
|
|
extern int strcmp ();
|
|
|
|
extern int strlen ();
|
|
|
|
extern int strncmp ();
|
|
|
|
extern int time ();
|
|
|
|
extern int ungetc ();
|
|
|
|
extern int vfprintf ();
|
|
|
|
extern int vprintf ();
|
|
|
|
extern int vsprintf ();
|
|
|
|
extern long atol ();
|
1991-04-04 18:19:53 +00:00
|
|
|
|
|
|
|
#ifndef tolower
|
1992-11-23 20:42:33 +00:00
|
|
|
extern int tolower ();
|
1991-04-04 18:19:53 +00:00
|
|
|
#endif /* tolower */
|
|
|
|
|
|
|
|
#ifndef toupper
|
1992-11-23 20:42:33 +00:00
|
|
|
extern int toupper ();
|
1991-04-04 18:19:53 +00:00
|
|
|
#endif /* toupper */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local Variables:
|
|
|
|
* fill-column: 80
|
|
|
|
* comment-column: 0
|
|
|
|
* End:
|
|
|
|
*/
|
|
|
|
|
1992-02-13 09:13:54 +00:00
|
|
|
/* end of ho-sunos.h */
|