summaryrefslogtreecommitdiff
path: root/include/glibtop/gnuserv.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/gnuserv.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/gnuserv.h')
-rw-r--r--include/glibtop/gnuserv.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/glibtop/gnuserv.h b/include/glibtop/gnuserv.h
index 8eb36128..6f945c71 100644
--- a/include/glibtop/gnuserv.h
+++ b/include/glibtop/gnuserv.h
@@ -153,8 +153,9 @@ static char header_rcsid [] = "!Header: gnuserv.h,v 2.4 95/02/16 11:58:11 arup a
#define CONN_IPC 2
/* function declarations */
-extern int glibtop_make_connection __P((const char *, int, int *));
+int glibtop_make_connection (const char *hostarg, int portarg, int *s);
#ifdef INTERNET_DOMAIN_SOCKETS
-extern long glibtop_internet_addr __P((const char *));
+long glibtop_internet_addr (const char *host);
#endif
+