File: error.h

package info (click to toggle)
rlinetd 0.5.18
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,952 kB
  • ctags: 596
  • sloc: sh: 8,537; ansic: 2,833; yacc: 1,415; lex: 122; makefile: 109; perl: 4
file content (18 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef H_ERROR
#define H_ERROR

#include <errno.h>
#include <string.h>
#include <sysexits.h>

void rl_note(const char *, ...);

void rl_warn(const char *, ...);
void rl_fatal(int, const char *, ...);
	
void rl_pwarn(const char *, int, const char *, ...);
void rl_pfatal(int, const char *, int,  const char *, ...);

#endif /* H_ERROR */

/* vim: set ts=2: */