pathconf: doesnt use sysinfo so don't fetch it
authorAlan Cox <alan@linux.intel.com>
Sun, 28 Dec 2014 23:53:39 +0000 (23:53 +0000)
committerAlan Cox <alan@linux.intel.com>
Sun, 28 Dec 2014 23:53:39 +0000 (23:53 +0000)
Library/libs/pathconf.c

index 1751b0c..74701db 100644 (file)
@@ -3,10 +3,6 @@
 
 long _pathconf(int name)
 {
-  struct _uzisysinfoblk info;
-  
-  _uname(&info, sizeof(info));
-
   switch(name) {
     case _PC_LINK_MAX:
       return 65535;