File: err.h

package info (click to toggle)
zile 1.0a5-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 744 kB
  • ctags: 578
  • sloc: ansic: 6,090; makefile: 278; sh: 107
file content (25 lines) | stat: -rw-r--r-- 603 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*	$Id: err.h,v 1.2 1997/10/26 20:20:20 sandro Exp $	*/

#ifndef __ERR_H
#define __ERR_H

#include <stdarg.h>

#ifdef __cplusplus
extern "C" {
#endif

extern void err(int status, const char *fmt, ...);
extern void verr(int status, const char *fmt, va_list ap);
extern void errx(int status, const char *fmt, ...);
extern void verrx(int status, const char *fmt, va_list ap);
extern void warn(const char *fmt, ...);
extern void vwarn(const char *fmt, va_list ap);
extern void warnx(const char *fmt, ...);
extern void vwarnx(const char *fmt, va_list ap);

#ifdef __cplusplus
}
#endif

#endif /* !__ERR_H */