Subject: redundant defines?
To: None <tech-kern@netbsd.org>
From: D'Arcy J.M. Cain <darcy@NetBSD.org>
List: tech-kern
Date: 03/09/2003 09:38:55
Any reason why we don't drop the #ifdef blocks here in
src/sys/kern/syscalls.c?
...
"compat_43_olseek", /* 19 = compat_43 olseek */
#ifdef COMPAT_43
"getpid", /* 20 = getpid */
#else
"getpid", /* 20 = getpid */
#endif
"mount", /* 21 = mount */
"unmount", /* 22 = unmount */
"setuid", /* 23 = setuid */
#ifdef COMPAT_43
"getuid", /* 24 = getuid */
#else
"getuid", /* 24 = getuid */
#endif
"geteuid", /* 25 = geteuid */
...
--
D'Arcy J.M. Cain <darcy@netbsd.org>
http://www.NetBSD.org/