kern

annotate src/klibc/errno.h @ 72:3941e82b07f2

- implemented syscalls: exit, waitpid, getppid - moved sys_whatever functions out of syscall.c into more reasonable files - putting all the definitions that must be synced with userland to include/kdef.h
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 15 Oct 2011 07:45:56 +0300
parents f44bec97a0ec
children
rev   line source
nuclear@63 1 #ifndef ERRNO_H_
nuclear@63 2 #define ERRNO_H_
nuclear@63 3
nuclear@72 4 /* all kernel-definitions that should be shared with user space
nuclear@72 5 * are in include/kdef.h
nuclear@72 6 */
nuclear@72 7 #include "kdef.h"
nuclear@63 8
nuclear@63 9 #endif /* ERRNO_H_ */