Source-Changes-HG archive

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

[src/trunk]: src/sys/sys Un-__P.



details:   https://anonhg.NetBSD.org/src/rev/a5858e838b09
branches:  trunk
changeset: 495596:a5858e838b09
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue Aug 01 04:58:55 2000 +0000

description:
Un-__P.

diffstat:

 sys/sys/callout.h |  16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diffs (38 lines):

diff -r de2d10115faa -r a5858e838b09 sys/sys/callout.h
--- a/sys/sys/callout.h Tue Aug 01 04:57:28 2000 +0000
+++ b/sys/sys/callout.h Tue Aug 01 04:58:55 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: callout.h,v 1.14 2000/03/24 11:57:16 enami Exp $       */
+/*     $NetBSD: callout.h,v 1.15 2000/08/01 04:58:55 thorpej Exp $     */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -87,7 +87,7 @@
        TAILQ_ENTRY(callout) c_link;
        u_int64_t       c_time;                 /* when callout fires */
        void            *c_arg;                 /* function argument */
-       void            (*c_func) __P((void *));/* functiuon to call */
+       void            (*c_func)(void *);      /* functiuon to call */
        int             c_flags;                /* state of this entry */
 };
 
@@ -105,13 +105,13 @@
 extern int *callwheel_sizes;           /* for allocsys() */
 #endif
 
-void   callout_setsize __P((void));
-void   callout_startup __P((void));
-void   callout_init __P((struct callout *));
-void   callout_reset __P((struct callout *, int, void (*)(void *), void *));
-void   callout_stop __P((struct callout *));
+void   callout_setsize(void);
+void   callout_startup(void);
+void   callout_init(struct callout *);
+void   callout_reset(struct callout *, int, void (*)(void *), void *);
+void   callout_stop(struct callout *);
 #ifdef CALLWHEEL_STATS
-void   callout_showstats __P((void));
+void   callout_showstats(void);
 #endif
 
 #define        callout_active(c)       ((c)->c_flags & CALLOUT_ACTIVE)



Home | Main Index | Thread Index | Old Index