.
[gnulib.git] / lib / error.h
1 #ifndef _error_h_
2 #define _error_h_
3
4 #ifdef __GNUC__
5 void error (int, int, const char *, ...)
6 #if __GNUC__ > 1
7     __attribute__ ((format (printf, 3, 4)))
8 #endif
9     ;
10 #else
11 void error ();
12 #endif
13
14 #endif /* _error_h_ */