diff options
author | bde <bde@FreeBSD.org> | 1998-01-17 16:32:14 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-01-17 16:32:14 +0000 |
commit | 4f0b4172653fd5c324069491cc77badc98dced82 (patch) | |
tree | b9f719c6b64b0ab8542347dbac786ebad0842480 | |
parent | d223e53f7c9f22a5b717df6956eec42bb4ab8081 (diff) | |
download | FreeBSD-src-4f0b4172653fd5c324069491cc77badc98dced82.zip FreeBSD-src-4f0b4172653fd5c324069491cc77badc98dced82.tar.gz |
Started getting rid of the compatibility cruft for the Lite1 mount()
and the pre-Lite2 vfsconf interfaces.
For getvfsent.c, just define _OLD_VFSCONF. This will give the
current default macro hacks in <sys/mount.h> when the default is
reversed. This is an intermediate step.
-rw-r--r-- | lib/libc/gen/getvfsent.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/gen/getvfsent.c b/lib/libc/gen/getvfsent.c index c4ce2cc..d7a8633 100644 --- a/lib/libc/gen/getvfsent.c +++ b/lib/libc/gen/getvfsent.c @@ -4,6 +4,8 @@ * This file is in the public domain. */ +#define _OLD_VFSCONF + #include <sys/param.h> #include <sys/types.h> #include <sys/mount.h> |