mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-18 05:12:15 +02:00
15 lines
220 B
C
15 lines
220 B
C
#ifndef _error_h_
|
|
#define _error_h_
|
|
|
|
#ifdef __GNUC__
|
|
void error (int, int, const char *, ...)
|
|
#if __GNUC__ > 1
|
|
__attribute__ ((format (printf, 3, 4)))
|
|
#endif
|
|
;
|
|
#else
|
|
void error ();
|
|
#endif
|
|
|
|
#endif /* _error_h_ */
|