1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-20 06:12:14 +02:00
This commit is contained in:
Jim Meyering
1994-12-20 05:05:55 +00:00
parent 735c6a9adc
commit eaa5cc3f91

14
lib/error.h Normal file
View File

@@ -0,0 +1,14 @@
#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_ */