|
|
@@ -22,19 +22,6 @@
|
|
|
#ifndef _ERROR_H
|
|
|
#define _ERROR_H 1
|
|
|
|
|
|
-#ifndef __attribute__
|
|
|
-/* This feature is available in gcc versions 2.5 and later. */
|
|
|
-# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
|
|
|
-# define __attribute__(Spec) /* empty */
|
|
|
-# endif
|
|
|
-/* The __-protected variants of `format' and `printf' attributes
|
|
|
- are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
|
|
|
-# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
|
|
|
-# define __format__ format
|
|
|
-# define __printf__ printf
|
|
|
-# endif
|
|
|
-#endif
|
|
|
-
|
|
|
#ifdef __cplusplus
|
|
|
extern "C" {
|
|
|
#endif
|
|
|
@@ -46,11 +33,11 @@ extern "C" {
|
|
|
If STATUS is nonzero, terminate the program with `exit (STATUS)'. */
|
|
|
|
|
|
extern void error (int status, int errnum, const char *format, ...)
|
|
|
- __attribute__ ((__format__ (__printf__, 3, 4)));
|
|
|
+ PRINTFFORMAT(3, 4);
|
|
|
|
|
|
extern void error_at_line (int status, int errnum, const char *fname,
|
|
|
unsigned int lineno, const char *format, ...)
|
|
|
- __attribute__ ((__format__ (__printf__, 5, 6)));
|
|
|
+ PRINTFFORMAT(5, 6);
|
|
|
|
|
|
/* If NULL, error will flush stdout, then print on stderr the program
|
|
|
name, a colon and a space. Otherwise, error will call this
|