1952e2e1c1
These bits are taken from the FSF anoncvs repo on 1-Feb-2002 08:20 PST.
45 lines
2.0 KiB
C
45 lines
2.0 KiB
C
/* C Compatible Compiler Preprocessor (CCCP)
|
|
Copyright (C) 1986, 1987, 1989, 2000 Free Software Foundation, Inc.
|
|
Written by Paul Rubin, June 1986
|
|
Adapted to ANSI C, Richard Stallman, Jan 1987
|
|
Dusted off, polished, and adapted for use as traditional
|
|
preprocessor only, Zack Weinberg, Jul 2000
|
|
|
|
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, 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#ifndef GCC_TRADCPP_H
|
|
#define GCC_TRADCPP_H
|
|
|
|
extern void error PARAMS ((const char *msgid, ...)) ATTRIBUTE_PRINTF_1;
|
|
extern void warning PARAMS ((const char *msgid, ...)) ATTRIBUTE_PRINTF_1;
|
|
extern void fatal PARAMS ((const char *msgid, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
|
|
extern void error_with_line PARAMS ((int, const char *msgid, ...)) ATTRIBUTE_PRINTF_2;
|
|
extern void error_from_errno PARAMS ((const char *msgid));
|
|
|
|
extern void perror_with_name PARAMS ((const char *msgid));
|
|
extern void pfatal_with_name PARAMS ((const char *msgid)) ATTRIBUTE_NORETURN;
|
|
extern void fancy_abort PARAMS ((int, const char *)) ATTRIBUTE_NORETURN;
|
|
|
|
extern struct hashnode *lookup PARAMS ((const unsigned char *, int, int));
|
|
extern int parse_c_expression PARAMS ((const char *)); /* in tradcif.y */
|
|
extern int test_assertion PARAMS ((unsigned char **));
|
|
|
|
#define is_idchar(x) ISIDNUM(x)
|
|
#define is_idstart(x) ISIDST(x)
|
|
#define is_space(x) ISSPACE(x)
|
|
#define is_nvspace(x) (IS_NVSPACE(x) && x != '\0')
|
|
|
|
#endif /* ! GCC_TRADCPP_H */
|