Whitespace cleanup.

* configure.in: Eliminate subdir stuff.
* configure: Regenerate.
* include/getopt.h (option): Make name field 'const'.
This commit is contained in:
Christopher Faylor
2000-10-28 05:41:44 +00:00
parent ce475802f8
commit 75a57bf04a
45 changed files with 196 additions and 301 deletions

View File

@ -236,7 +236,7 @@ fhandler_dev_mem::lseek (off_t offset, int whence)
case SEEK_SET:
pos = offset;
break;
case SEEK_CUR:
pos += offset;
break;
@ -245,7 +245,7 @@ fhandler_dev_mem::lseek (off_t offset, int whence)
pos = mem_size;
pos += offset;
break;
default:
set_errno (EINVAL);
return (off_t) -1;
@ -314,7 +314,7 @@ fhandler_dev_mem::mmap (caddr_t *addr, size_t len, DWORD access,
phys.QuadPart = (ULONGLONG) off;
if ((ret = NtMapViewOfSection (h,
INVALID_HANDLE_VALUE,
INVALID_HANDLE_VALUE,
&base,
0L,
dlen,