summaryrefslogtreecommitdiffhomepage
path: root/compat/sysexits.hpp
blob: a7a9c3173ae536060b44c8b08388803b7a694852 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#ifdef _WIN32
#   define EX_OK        0   /* successful termination */
#   define EX_USAGE     64  /* command line usage error */
#   define EX_DATAERR   65  /* data format error */
#   define EX_SOFTWARE  70  /* internal software error */
#   define EX_CANTCREAT 73  /* can't create (user) output file */
#   define EX_IOERR     74  /* input/output error */
#else
#   include <sysexits.h>
#endif