Files
codezero/tasks/libposix/errno.c
Bahadir Balban 466138f125 shmat/shmget for utcbs are working for now.
faults on shared memory needs to be implemented.
2008-03-19 22:26:38 +00:00

9 lines
98 B
C

#include <errno.h>
int errno_variable;
int *__errno_location(void)
{
return &errno_variable;
}