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