blob: 33f19b9d5be8fa413eae29d556246391244345ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <cstdlib> // for EXIT_SUCCESS, EXIT_FAILRUE
/* FreeBSD sysexits(3)
*
* The input data was incorrect in some way. This
* should only be used for user's data and not system
* files.
*/
#if !defined EX_OSFILE
# define EX_OSFILE 72
#endif
|