From bc5659076af3c3cec2f434982a0b9b7c6c6956cd Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 28 Dec 2014 23:53:39 +0000 Subject: [PATCH] pathconf: doesnt use sysinfo so don't fetch it --- Library/libs/pathconf.c | 4 ---- 1 file changed, 4 deletions(-) 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; -- 2.34.1