diff options
| author | matt <matt@NetBSD.org> | 2008-03-11 05:31:00 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2008-03-11 05:31:00 +0000 |
| commit | 103168eb066bc78ef74b1ea176a3b7bfce8ad819 (patch) | |
| tree | 078a95b07b6b7e7c11544c1c5aba97e380fa2f2d /sys/dev | |
| parent | 70944bcde16575e7c410dc078a8c390988cea846 (diff) | |
foo() -> foo(void)
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/cninit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/cninit.c b/sys/dev/cninit.c index d5d6af4056f..4e0cadf087d 100644 --- a/sys/dev/cninit.c +++ b/sys/dev/cninit.c @@ -1,4 +1,4 @@ -/* $NetBSD: cninit.c,v 1.8 2005/12/11 12:20:53 christos Exp $ */ +/* $NetBSD: cninit.c,v 1.9 2008/03/11 05:31:00 matt Exp $ */ /* * Copyright (c) 1990, 1993 @@ -78,7 +78,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: cninit.c,v 1.8 2005/12/11 12:20:53 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: cninit.c,v 1.9 2008/03/11 05:31:00 matt Exp $"); #include <sys/param.h> #include <sys/proc.h> @@ -94,7 +94,7 @@ __KERNEL_RCSID(0, "$NetBSD: cninit.c,v 1.8 2005/12/11 12:20:53 christos Exp $"); #include <dev/cons.h> void -cninit() +cninit(void) { struct consdev *cp; struct consdev *bestMatch; |
