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))".
This commit is contained in:
Martin Baulig
1999-02-18 20:39:37 +00:00
committed by Martin Baulig
parent 1da8264984
commit 69fed8d42d
40 changed files with 199 additions and 144 deletions

View File

@@ -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