neobbo/include/error.h

14 lines
No EOL
163 B
C

#ifndef ERROR_H
#define ERROR_H
typedef enum {
/* Success */
KERNEL_STATUS_SUCCESS,
/* General error */
KERNEL_STATUS_ERROR,
} kstatus;
#endif