summaryrefslogtreecommitdiff
path: root/include/errnum.h
blob: adb8a8040cb010ea3bc7442afac327889db41883 (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
/*
 * (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,
	EBUSTO,
	EUNEXPARG,
    EATRANGE,
    EATALRDY,
    EATNOT,
    EATOPEN,
    EATOTHER,
    ERUNNING,
    EINVAL,
    EEOF,

} ERRNUM;

#endif /* ERRNUM_H */