Nucleus
Barry System headers (remove libc dependency) 18495cf (3 years, 2 months ago)diff --git a/kernel/uname.c b/kernel/uname.c index 10e52c0..a9ec735 100644 --- a/kernel/uname.c +++ b/kernel/uname.c @@ -3,13 +3,13 @@ * kernel to a buffer for userspace to read. */ -#include <string.h> +#include <sys/errno.h> #include <sys/utsname.h> -#include <errno.h> +#include <nucleus/lib.h> #include <nucleus/memory.h> static const char *SYSNAME = "Nucleus"; -static const char *RELEASE = "0.9.2"; +static const char *RELEASE = "0.9.3"; static const char *VERSION = "SMP PREEMPT "__DATE__" "__TIME__; static const char *MACHINE = "x86";