comparison src/client.h @ 54:125d79c9e586 noffle

[svn] * src/client.c, src/configfile.c, src/content.c, src/control.c, src/database.c, src/dynamicstring.c, src/fetch.c, src/fetchlist.c, src/group.c, src/itemlist.c, src/lock.c, src/log.c, src/noffle.c, src/online.c, src/outgoing.c, src/over.c, src/post.c, src/protocol.c, src/pseudo.c, src/request.c, src/server.c, src/util.c: Added portable.h #include. * src/client.h, src/database.h, src/fetch.c, src/group.h, src/lock.c, src/outgoing.c, src/over.c, src/over.h, src/pseudo.c, src/server.c, src/util.c, src/util.h: Added some #ifdefs to correctly include either time.h or sys/time.h or both, depending on which are found. * src/noffle.c: Changed the return-type of the signal-handlers bugReport() and logSignal() to RETSIGTYPE, which is either void or int, depending on the system you compile on (autoconf #defines the RETSIGTYPE).
author uh1763
date Tue, 09 May 2000 23:28:38 +0100
parents 32ba1198c6fa
children 05f50c1761d9
comparison
equal deleted inserted replaced
53:9f3a4eccce32 54:125d79c9e586
1 /* 1 /*
2 client.h 2 client.h
3 3
4 Noffle acting as client to other NNTP-servers 4 Noffle acting as client to other NNTP-servers
5 5
6 $Id: client.h 51 2000-05-05 23:49:38Z uh1763 $ 6 $Id: client.h 60 2000-05-09 22:28:38Z uh1763 $
7 */ 7 */
8 8
9 #ifndef CLIENT_H 9 #ifndef CLIENT_H
10 #define CLIENT_H 10 #define CLIENT_H
11 11
12 #if HAVE_CONFIG_H 12 #if HAVE_CONFIG_H
13 #include <config.h> 13 #include <config.h>
14 #endif 14 #endif
15 15
16 #if TIME_WITH_SYS_TIME
17 #include <sys/time.h>
16 #include <time.h> 18 #include <time.h>
19 #else
20 #if HAVE_SYS_TIME_H
21 #include <sys/time.h>
22 #else
23 #include <time.h>
24 #endif
25 #endif
26
17 #include "common.h" 27 #include "common.h"
18 #include "database.h" 28 #include "database.h"
19 #include "fetchlist.h" 29 #include "fetchlist.h"
20 30
21 /* Format of server name: <host>[:<port>] */ 31 /* Format of server name: <host>[:<port>] */