Displaying 1 result from an estimated 1 matches for "da1dce0".
Did you mean:
  da1dacf0
  
2013 May 13
0
[klibc:sysconf] Framework and trivial implementation of sysconf(3)
...d)
 {
 	return __page_shift;
 }
@@ -162,4 +162,7 @@ __extern int daemon(int, int);
 #define STDOUT_FILENO	1
 #define STDERR_FILENO	2
 
+/* This #include must be at the end */
+#include <sys/sysconf.h>
+
 #endif				/* _UNISTD_H */
diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild
index 2bef9ca..da1dce0 100644
--- a/usr/klibc/Kbuild
+++ b/usr/klibc/Kbuild
@@ -70,7 +70,8 @@ klib-y += vsnprintf.o snprintf.o vsprintf.o sprintf.o \
 	  stdio/fread.o stdio/fwrite.o stdio/fflush.o \
 	  stdio/ungetc.o stdio/fgetc.o \
 	  stdio/fseek.o stdio/ftell.o stdio/rewind.o \
-	  stdio/fileno.o stdio/feof.o stdio/...