Stylistic changes.

This commit is contained in:
mycroft 1994-09-18 04:32:35 +00:00
parent a17fd8ea43
commit 3270e71a99
1 changed files with 9 additions and 9 deletions

View File

@ -42,15 +42,15 @@ int
getpagesize()
{
static int pagsz;
int mib[2], value;
int mib[2];
size_t size;
if (pagsz != 0)
return pagsz;
mib[0] = CTL_HW;
mib[1] = HW_PAGESIZE;
size = sizeof value;
if (sysctl(mib, 2, &value, &size, NULL, 0) == -1)
return (-1);
return (pagsz = value);
if (pagsz == 0) {
mib[0] = CTL_HW;
mib[1] = HW_PAGESIZE;
size = sizeof value;
if (sysctl(mib, 2, &pagsz, &size, NULL, 0) == -1)
return (-1);
}
return (pagsz);
}