comparison src/configfile.c @ 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 2842f50feb55
children 1eb0cdd17c76
comparison
equal deleted inserted replaced
53:9f3a4eccce32 54:125d79c9e586
4 The following macros must be set, when compiling this file: 4 The following macros must be set, when compiling this file:
5 CONFIGFILE 5 CONFIGFILE
6 SPOOLDIR 6 SPOOLDIR
7 VERSION 7 VERSION
8 8
9 $Id: configfile.c 49 2000-05-05 21:45:56Z uh1763 $ 9 $Id: configfile.c 60 2000-05-09 22:28:38Z uh1763 $
10 */ 10 */
11 11
12 #if HAVE_CONFIG_H 12 #if HAVE_CONFIG_H
13 #include <config.h> 13 #include <config.h>
14 #endif 14 #endif
16 #include "configfile.h" 16 #include "configfile.h"
17 17
18 #include <limits.h> 18 #include <limits.h>
19 #include "log.h" 19 #include "log.h"
20 #include "util.h" 20 #include "util.h"
21 #include "portable.h"
21 22
22 typedef struct 23 typedef struct
23 { 24 {
24 Str name; 25 Str name;
25 Str user; 26 Str user;