diff options
author | peter <peter@FreeBSD.org> | 2001-06-15 07:48:21 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-06-15 07:48:21 +0000 |
commit | ded47f063552fc33a4008204783e7485feefb69e (patch) | |
tree | 452f86225639ae20e05fa82ec90b0d6fd7e287a1 /sys/compat/linux/linux_mib.c | |
parent | 581435f4bd735b85b720950bde68b6856d079279 (diff) | |
download | FreeBSD-src-ded47f063552fc33a4008204783e7485feefb69e.zip FreeBSD-src-ded47f063552fc33a4008204783e7485feefb69e.tar.gz |
Fix warning:
239: warning: no previous prototype for `linux_debug'
Diffstat (limited to 'sys/compat/linux/linux_mib.c')
-rw-r--r-- | sys/compat/linux/linux_mib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_mib.c b/sys/compat/linux/linux_mib.c index 35d4a25..9ebcf1b 100644 --- a/sys/compat/linux/linux_mib.c +++ b/sys/compat/linux/linux_mib.c @@ -232,9 +232,9 @@ linux_set_oss_version(p, oss_version) #ifdef DEBUG -u_char linux_debug_map[howmany(LINUX_SYS_MAXSYSCALL, sizeof(u_char))]; +static u_char linux_debug_map[howmany(LINUX_SYS_MAXSYSCALL, sizeof(u_char))]; -int +static int linux_debug(int syscall, int toggle, int global) { |