1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-18 05:12:15 +02:00
Files
coreutils/lib/error.h
Jim Meyering eaa5cc3f91 .
1994-12-20 05:05:55 +00:00

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_ */