Files
quark-kernel/include/types/status.h

9 lines
106 B
C

#pragma once
enum status_t
{
S_OK = 0,
S_BAD_SYSCALL,
S_OUT_OF_MEMORY,
S_OUT_OF_BOUNDS
};