Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/librumpclient Don't use K&R syntax



details:   https://anonhg.NetBSD.org/src/rev/0a95d413d617
branches:  trunk
changeset: 771984:0a95d413d617
user:      joerg <joerg%NetBSD.org@localhost>
date:      Mon Dec 12 15:21:32 2011 +0000

description:
Don't use K&R syntax

diffstat:

 lib/librumpclient/rumpclient.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 82239cab6c39 -r 0a95d413d617 lib/librumpclient/rumpclient.c
--- a/lib/librumpclient/rumpclient.c    Mon Dec 12 15:05:36 2011 +0000
+++ b/lib/librumpclient/rumpclient.c    Mon Dec 12 15:21:32 2011 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: rumpclient.c,v 1.45 2011/04/30 12:25:05 alnsn Exp $   */
+/*      $NetBSD: rumpclient.c,v 1.46 2011/12/12 15:21:32 joerg Exp $   */
 
 /*
  * Copyright (c) 2010, 2011 Antti Kantee.  All Rights Reserved.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: rumpclient.c,v 1.45 2011/04/30 12:25:05 alnsn Exp $");
+__RCSID("$NetBSD: rumpclient.c,v 1.46 2011/12/12 15:21:32 joerg Exp $");
 
 #include <sys/param.h>
 #include <sys/event.h>
@@ -745,7 +745,7 @@
 static pid_t init_done = 0;
 
 int
-rumpclient_init()
+rumpclient_init(void)
 {
        char *p;
        int error;
@@ -995,7 +995,7 @@
 }
 
 pid_t
-rumpclient_fork()
+rumpclient_fork(void)
 {
 
        return rumpclient__dofork(fork);



Home | Main Index | Thread Index | Old Index