From: Jim Meyering Date: Tue, 20 Dec 1994 05:05:55 +0000 (+0000) Subject: . X-Git-Tag: textutils-1_12_1~376 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eaa5cc3f91156906d476be4946fb60efd010a1cf;p=thirdparty%2Fcoreutils.git . --- diff --git a/lib/error.h b/lib/error.h new file mode 100644 index 0000000000..f7ef7e4192 --- /dev/null +++ b/lib/error.h @@ -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_ */