summaryrefslogtreecommitdiff
path: root/lib/error.h
blob: f7ef7e419291ef99f9f0678dcb3a9b134283a6f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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_ */