summaryrefslogtreecommitdiff
path: root/exit.h
blob: 147392d6255af1dfae438868a2dfe14144ea7150 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef EXIT_H
#define EXIT_H

#ifndef __GNUC__
  extern void _exit();
#else
  extern void _exit(int);
#endif /* __GNUC__ */

#endif