File: signame.h

package info (click to toggle)
ndtpd 2.3.6-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 5,688 kB
  • ctags: 3,377
  • sloc: ansic: 24,078; sh: 7,530; perl: 1,335; makefile: 646
file content (49 lines) | stat: -rw-r--r-- 1,150 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * Copyright (c) 1997  Motoyuki Kasahara
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef SIGNAME_H
#define SIGNAME_H

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

/*
 * Function declarations.
 */
#ifdef __STDC__
int signal_code(const char *);
const char *signal_name(int);
const char *signal_explanation(int);
#ifndef HAVE_PSIGNAL
void psignal(int, const char *);
#endif
#ifndef HAVE_STRSIGNAL
const char *strsignal(int);
#endif

#else /* not __STDC__ */

int signal_code();
const char *signal_name();
const char *signal_explanation();
#ifndef HAVE_PSIGNAL
void psignal();
#endif
#ifndef HAVE_STRSIGNAL
const char *strsignal();
#endif
#endif /* not __STDC__ */

#endif /* not SIGNAME_H */