summaryrefslogtreecommitdiff
path: root/include/glibtop/sem_limits.h
diff options
context:
space:
mode:
authorMartin Baulig <martin@home-of-linux.org>1999-02-18 20:39:37 +0000
committerMartin Baulig <martin@src.gnome.org>1999-02-18 20:39:37 +0000
commit69fed8d42d22d3dce1a43f80c66fd7b1e87a4cbc (patch)
tree243467438318582ba5c31eeb9d6e33db3f227afb /include/glibtop/sem_limits.h
parent1da82649840b510a90ba1ee31578a75c989948e1 (diff)
downloadlibgtop-69fed8d42d22d3dce1a43f80c66fd7b1e87a4cbc.tar.gz
Use glib-like function prototypes instead of "extern <function>
1999-02-18 Martin Baulig <martin@home-of-linux.org> * include/glibtop/*.h: Use glib-like function prototypes instead of "extern <function> __P((args))".
Diffstat (limited to 'include/glibtop/sem_limits.h')
-rw-r--r--include/glibtop/sem_limits.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/glibtop/sem_limits.h b/include/glibtop/sem_limits.h
index 89526310..1ce0f794 100644
--- a/include/glibtop/sem_limits.h
+++ b/include/glibtop/sem_limits.h
@@ -65,14 +65,14 @@ struct _glibtop_sem_limits
#define glibtop_get_sem_limits_r glibtop_get_sem_limits_s
#endif
-extern void glibtop_get_sem_limits_l __P((glibtop *, glibtop_sem_limits *));
+void glibtop_get_sem_limits_l (glibtop *server, glibtop_sem_limits *buf);
#if GLIBTOP_SUID_SEM_LIMITS
-extern void glibtop_init_sem_limits_p __P((glibtop *));
-extern void glibtop_get_sem_limits_p __P((glibtop *, glibtop_sem_limits *));
+void glibtop_init_sem_limits_p (glibtop *server);
+void glibtop_get_sem_limits_p (glibtop *server, glibtop_sem_limits *buf);
#else
-extern void glibtop_init_sem_limits_s __P((glibtop *));
-extern void glibtop_get_sem_limits_s __P((glibtop *, glibtop_sem_limits *));
+void glibtop_init_sem_limits_s (glibtop *server);
+void glibtop_get_sem_limits_s (glibtop *server, glibtop_sem_limits *buf);
#endif
#ifdef GLIBTOP_NAMES