Module Name:    src
Committed By:   pgoyette
Date:           Wed Jan 30 02:00:02 UTC 2019

Modified Files:
        src/sys/compat/netbsd32: netbsd32_compat_80.c

Log Message:
Remove #ifdef COMPAT_80

The file will only be selected if "options COMPAT_80" is defined in
the config file.  The COMPAT_80 macro is defined only if the option
is explicitly defined, and not if it is implicitly defined due to
inclusion of lesser-version COMPATs.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/compat/netbsd32/netbsd32_compat_80.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/netbsd32/netbsd32_compat_80.c
diff -u src/sys/compat/netbsd32/netbsd32_compat_80.c:1.3 src/sys/compat/netbsd32/netbsd32_compat_80.c:1.4
--- src/sys/compat/netbsd32/netbsd32_compat_80.c:1.3	Mon Jan 28 01:09:52 2019
+++ src/sys/compat/netbsd32/netbsd32_compat_80.c	Wed Jan 30 02:00:02 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: netbsd32_compat_80.c,v 1.3 2019/01/28 01:09:52 pgoyette Exp $	*/
+/*	$NetBSD: netbsd32_compat_80.c,v 1.4 2019/01/30 02:00:02 pgoyette Exp $	*/
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_80.c,v 1.3 2019/01/28 01:09:52 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_80.c,v 1.4 2019/01/30 02:00:02 pgoyette Exp $");
 
 #include <sys/param.h>
 #include <sys/dirent.h>
@@ -46,8 +46,6 @@ __KERNEL_RCSID(0, "$NetBSD: netbsd32_com
 #include <compat/netbsd32/netbsd32_syscallargs.h>
 #include <compat/netbsd32/netbsd32_conv.h>
 
-#ifdef COMPAT_80
-
 int netbsd32_80_modctl(struct lwp *, const struct netbsd32_modctl_args *,
 	register_t *);
 
@@ -197,4 +195,3 @@ compat_netbsd32_80_modcmd(modcmd_t cmd, 
 		return ENOTTY;
 	}
 }
-#endif	/* COMPAT_80 */

Reply via email to