summaryrefslogtreecommitdiff
path: root/include/errnum.h
blob: 628c4323af2a8f9b3dd997ec5e794b6aeca5d66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * (C) Copyright 2018 Leo C. <erbl259-lmu@yahoo.de>
 *
 * SPDX-License-Identifier:	GPL-2.0
 */

#ifndef ERRNUM_H
#define ERRNUM_H

#include "errnum.h"

typedef enum {
	ESUCCESS	= 0,
	ENOMEM		= 101,
	EINTR,
	EBUSTO,
	EUNEXPARG,
	EATRANGE,
	EATALRDY,
	EATNOT,
	EATOPEN,
	EATOTHER,
	ERUNNING,
	EINVAL,
	EEOF,

} ERRNUM;

#endif /* ERRNUM_H */