blob: d7351ba5fa827e76b2bc161b914e66e2a417b55d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef EXIT_H
#define EXIT_H
/* Return code conventions:
110: Unable to access dir
111: General (memory) error
112: Unable to access file
*/
void _exit();
int rename(const char *, const char *);
#endif
|