From bc59f0167a03be2d2e4cf8a680dda8444243c64f Mon Sep 17 00:00:00 2001 From: "greg@kroah.com" Date: Wed, 28 Jan 2004 18:53:12 -0800 Subject: [PATCH] remove a __KLIBC__ tests in libsysfs, as klibc now supports getpagesize() --- libsysfs/sysfs_dir.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'libsysfs') diff --git a/libsysfs/sysfs_dir.c b/libsysfs/sysfs_dir.c index a60410ed28..ce01669754 100644 --- a/libsysfs/sysfs_dir.c +++ b/libsysfs/sysfs_dir.c @@ -273,11 +273,8 @@ int sysfs_read_attribute(struct sysfs_attribute *sysattr) sysattr->path); return -1; } -#ifdef __KLIBC__ - pgsize = 0x1000; -#else - pgsize = sysconf(_SC_PAGESIZE); -#endif + + pgsize = getpagesize(); fbuf = (unsigned char *)calloc(1, pgsize+1); if (fbuf == NULL) { dprintf("calloc failed\n"); -- cgit v1.2.3-54-g00ecf