From: Alan Cox Date: Sun, 28 Dec 2014 23:53:39 +0000 (+0000) Subject: pathconf: doesnt use sysinfo so don't fetch it X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=bc5659076af3c3cec2f434982a0b9b7c6c6956cd;p=FUZIX.git pathconf: doesnt use sysinfo so don't fetch it --- diff --git a/Library/libs/pathconf.c b/Library/libs/pathconf.c index 1751b0cc..74701dbb 100644 --- a/Library/libs/pathconf.c +++ b/Library/libs/pathconf.c @@ -3,10 +3,6 @@ long _pathconf(int name) { - struct _uzisysinfoblk info; - - _uname(&info, sizeof(info)); - switch(name) { case _PC_LINK_MAX: return 65535;