File: xstdlib.h

package info (click to toggle)
bibclean 2.11.4-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 5,212 kB
  • ctags: 1,545
  • sloc: ansic: 10,737; makefile: 817; perl: 66; sh: 40; awk: 27; sed: 6
file content (17 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef XSTDLIB_H_DEFINED_
#define XSTDLIB_H_DEFINED_

#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#else
#endif

#if !defined(EXIT_FAILURE)
#define EXIT_FAILURE	1
#endif

#if !defined(EXIT_SUCCESS)
#define EXIT_SUCCESS	0
#endif

#endif /* XSTDLIB_H_DEFINED_ */