11 lines
78 B
C
11 lines
78 B
C
#ifndef KERNEL_H
|
|
#define KERNEL_H
|
|
|
|
enum ErrorCodes
|
|
{
|
|
ENOMEM,
|
|
EIO
|
|
};
|
|
|
|
#endif
|