1992-02-13 17:49:39 +08:00
|
|
|
/* This file is ho-sunos.h
|
|
|
|
Copyright (C) 1987-1992 Free Software Foundation, Inc.
|
1992-11-24 04:42:33 +08:00
|
|
|
|
1992-02-13 17:49:39 +08:00
|
|
|
This file is part of GAS, the GNU Assembler.
|
1992-11-24 04:42:33 +08:00
|
|
|
|
1992-02-13 17:49:39 +08: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-24 04:42:33 +08:00
|
|
|
|
1992-02-13 17:49:39 +08: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-24 04:42:33 +08:00
|
|
|
|
1992-02-13 17:49:39 +08: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-16 05:09:34 +08:00
|
|
|
#if __STDC__ != 1
|
1991-04-05 02:19:53 +08:00
|
|
|
#define NO_STDARG
|
|
|
|
#endif /* not __STDC__ */
|
|
|
|
|
1992-02-16 05:09:34 +08:00
|
|
|
#if !defined(__GNUC__) && (__STDC__ != 1)
|
1991-05-18 11:15:32 +09:00
|
|
|
#include <memory.h>
|
1991-10-16 16:56:25 +08:00
|
|
|
#else
|
1993-07-30 09:40:25 +08:00
|
|
|
extern char* memset ();
|
1991-09-02 08:36:56 +09:00
|
|
|
#endif
|
1992-02-11 18:34:03 +08:00
|
|
|
|
|
|
|
/* #include <sys/stdtypes.h> before <stddef.h> when compiling by GCC. */
|
1992-12-29 02:38:10 +08:00
|
|
|
/* #include <sys/stdtypes.h> */
|
1992-01-22 06:14:16 +08:00
|
|
|
#include <stddef.h>
|
1991-04-05 02:19:53 +08:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
1994-06-11 01:55:45 +08:00
|
|
|
#include <stdlib.h>
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
/* externs for system libraries. */
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
extern char *strchr ();
|
|
|
|
extern char *strrchr ();
|
|
|
|
extern int _filbuf ();
|
|
|
|
extern int _flsbuf ();
|
|
|
|
extern int fclose ();
|
|
|
|
extern int fgetc ();
|
|
|
|
extern int fprintf ();
|
|
|
|
extern int printf ();
|
|
|
|
extern int setvbuf ();
|
|
|
|
extern int sscanf ();
|
|
|
|
extern int strcmp ();
|
|
|
|
extern int strlen ();
|
|
|
|
extern int strncmp ();
|
|
|
|
extern int ungetc ();
|
|
|
|
extern int vfprintf ();
|
|
|
|
extern int vprintf ();
|
|
|
|
extern int vsprintf ();
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
#ifndef tolower
|
1992-11-24 04:42:33 +08:00
|
|
|
extern int tolower ();
|
1991-04-05 02:19:53 +08:00
|
|
|
#endif /* tolower */
|
|
|
|
|
|
|
|
#ifndef toupper
|
1992-11-24 04:42:33 +08:00
|
|
|
extern int toupper ();
|
1991-04-05 02:19:53 +08:00
|
|
|
#endif /* toupper */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local Variables:
|
|
|
|
* fill-column: 80
|
|
|
|
* comment-column: 0
|
|
|
|
* End:
|
|
|
|
*/
|
|
|
|
|
1992-02-13 17:13:54 +08:00
|
|
|
/* end of ho-sunos.h */
|