diff options
author | eric <eric@FreeBSD.org> | 2002-04-13 01:17:21 +0000 |
---|---|---|
committer | eric <eric@FreeBSD.org> | 2002-04-13 01:17:21 +0000 |
commit | 2d36550df1736dde3e073f8f924a101ae9ec90c1 (patch) | |
tree | e3b1f22db95ed0b1c4b7432b32396f8e6568a23c /gnu/usr.bin/man | |
parent | 86be827a6ad306122e16d3114d011703367ed013 (diff) | |
download | FreeBSD-src-2d36550df1736dde3e073f8f924a101ae9ec90c1.zip FreeBSD-src-2d36550df1736dde3e073f8f924a101ae9ec90c1.tar.gz |
Fix compilation in the non-FreeBSD case.
Sponsored by: Apple
Diffstat (limited to 'gnu/usr.bin/man')
-rw-r--r-- | gnu/usr.bin/man/man/man.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/man/man/man.c b/gnu/usr.bin/man/man/man.c index 7b6fc41..4c5b632 100644 --- a/gnu/usr.bin/man/man/man.c +++ b/gnu/usr.bin/man/man/man.c @@ -357,9 +357,11 @@ man_getopt (argc, argv) case 'm': machine = optarg; break; +#ifdef __FreeBSD__ case 'o': use_original++; break; +#endif case 'p': roff_directive = strdup (optarg); break; |