File: system.h

package info (click to toggle)
namazu2 2.0.21-22
  • links: PTS
  • area: main
  • in suites: buster
  • size: 7,032 kB
  • sloc: ansic: 14,161; perl: 10,789; sh: 9,355; lisp: 1,147; makefile: 914
file content (12 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _SYSTEM_H
#define _SYSTEM_H 1

/* Some systems do not define EXIT_*, even with STDC_HEADERS.  */
#ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
#endif
#ifndef EXIT_FAILURE
# define EXIT_FAILURE 1
#endif

#endif