OSDN Git Service

Fix mips64vr4100-elf build failure.
[pf3gnuchains/gcc-fork.git] / gcc / gansidecl.h
1 /* ANSI and traditional C compatibility macros.
2    Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 /* This file mimics some of the support provided by include/ansidecl.h
22    in binutils and gdb releases.
23    ??? Over time the two should be merged into one.  */
24
25 #ifndef ANSIDECL_H
26 #define ANSIDECL_H
27
28 /* Add prototype support.  */
29 #ifndef PROTO
30 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
31 #define PROTO(ARGS) ARGS
32 #else
33 #define PROTO(ARGS) ()
34 #endif
35 #endif
36
37 #ifndef VPROTO
38 #ifdef __STDC__
39 #define PVPROTO(ARGS)           ARGS
40 #define VPROTO(ARGS)            ARGS
41 #define VA_START(va_list,var)  va_start(va_list,var)
42 #else
43 #define PVPROTO(ARGS)           ()
44 #define VPROTO(ARGS)            (va_alist) va_dcl
45 #define VA_START(va_list,var)  va_start(va_list)
46 #endif
47 #endif
48
49 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
50 # define __attribute__(x)
51 #endif
52
53 #ifndef ATTRIBUTE_UNUSED
54 #define ATTRIBUTE_UNUSED __attribute__ ((unused))
55 #endif /* ATTRIBUTE_UNUSED */
56
57 #ifndef ATTRIBUTE_PRINTF
58 #define ATTRIBUTE_PRINTF(m, n) __attribute__ ((format (__printf__, m, n)))
59 #define ATTRIBUTE_PRINTF_1 ATTRIBUTE_PRINTF(1, 2)
60 #define ATTRIBUTE_PRINTF_2 ATTRIBUTE_PRINTF(2, 3)
61 #define ATTRIBUTE_PRINTF_3 ATTRIBUTE_PRINTF(3, 4)
62 #define ATTRIBUTE_PRINTF_4 ATTRIBUTE_PRINTF(4, 5)
63 #define ATTRIBUTE_PRINTF_5 ATTRIBUTE_PRINTF(5, 6)
64 #endif /* ATTRIBUTE_PRINTF */
65
66 /* Define a generic NULL if one hasn't already been defined.  */
67
68 #ifndef NULL
69 #define NULL 0
70 #endif
71
72 #ifndef GENERIC_PTR
73 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
74 #define GENERIC_PTR void *
75 #else
76 #define GENERIC_PTR char *
77 #endif
78 #endif
79
80 #ifndef NULL_PTR
81 #define NULL_PTR ((GENERIC_PTR) 0)
82 #endif
83
84 #ifdef __STDC__
85
86 #define PTR void *
87
88 #else
89
90 #define PTR char *
91 #ifndef const
92 #define const
93 #endif
94
95 #endif /* ! __STDC__ */
96
97 /* We don't have autoconf for libgcc2.c since it's a target, so don't
98    define these functions, which aren't used there anyway.  */
99 #ifndef IN_LIBGCC2
100 #ifndef bcopy
101 # ifdef HAVE_BCOPY
102 #  ifdef NEED_DECLARATION_BCOPY
103 void bcopy ();
104 #  endif
105 # else
106 #  define bcopy(src,dst,len) memcpy ((dst),(src),(len))
107 # endif
108 #endif
109
110 #ifndef bzero
111 # ifdef HAVE_BZERO
112 #  ifdef NEED_DECLARATION_BZERO
113 void bzero ();
114 #  endif
115 # else
116 #  define bzero(dst,len) memset ((dst),0,(len))
117 # endif
118 #endif
119
120 #ifndef bcmp
121 # ifdef HAVE_BCMP
122 #  ifdef NEED_DECLARATION_BCMP
123 int bcmp ();
124 #  endif
125 # else
126 #  define bcmp(left,right,len) memcmp ((left),(right),(len))
127 # endif
128 #endif
129
130 #ifndef HAVE_RINDEX
131 # ifndef rindex
132 #  define rindex strrchr
133 # endif
134 #endif
135
136 #ifndef HAVE_INDEX
137 # ifndef index
138 #  define index strchr
139 # endif
140 #endif
141
142 #endif /* IN_LIBGCC2 */
143
144 #endif /* ANSIDECL_H */