blob: 087ad2af04b41331d8211c94e5ccb04934d5ef08 [file] [log] [blame]
Damien Miller6b85a7f2000-01-02 11:45:33 +11001#ifndef _DEFINES_H
2#define _DEFINES_H
3
Damien Millerb2033a42000-09-26 12:18:31 +11004/* Some platforms need this for the _r() functions */
Damien Miller81fa28a2000-10-20 09:14:04 +11005#if !defined(_REENTRANT) && !defined(SNI)
Damien Millerb2033a42000-09-26 12:18:31 +11006# define _REENTRANT 1
7#endif
8
Damien Miller74d0d4a1999-12-29 02:24:35 +11009/* Necessary headers */
10
Damien Miller1c67c992000-03-14 10:16:34 +110011#include <sys/types.h> /* For [u]intxx_t */
Damien Miller5a3e6831999-12-27 09:48:56 +110012#include <sys/socket.h> /* For SHUT_XXXX */
Damien Millera66626b2000-06-13 18:57:53 +100013#include <sys/param.h> /* For MAXPATHLEN */
14#include <netinet/in_systm.h> /* For typedefs */
Damien Miller1c67c992000-03-14 10:16:34 +110015#include <netinet/in.h> /* For IPv6 macros */
Damien Millerbc7c7cc2000-04-08 17:48:56 +100016#include <netinet/ip.h> /* For IPTOS macros */
Damien Miller78315eb2000-09-29 23:01:36 +110017#ifdef HAVE_SYS_UN_H
18# include <sys/un.h> /* For SUN_LEN */
19#endif
Damien Millerb29ea912000-01-15 14:12:03 +110020#ifdef HAVE_SYS_BITYPES_H
21# include <sys/bitypes.h> /* For u_intXX_t */
22#endif
Damien Miller5a3e6831999-12-27 09:48:56 +110023#ifdef HAVE_PATHS_H
24# include <paths.h> /* For _PATH_XXX */
25#endif
Damien Millera66626b2000-06-13 18:57:53 +100026#ifdef HAVE_LIMITS_H
27# include <limits.h> /* For PATH_MAX */
28#endif
Damien Miller5a3e6831999-12-27 09:48:56 +110029#ifdef HAVE_SYS_TIME_H
30# include <sys/time.h> /* For timersub */
31#endif
Damien Miller5a3e6831999-12-27 09:48:56 +110032#ifdef HAVE_MAILLOCK_H
Damien Millerbeb4ba51999-12-28 15:09:35 +110033# include <maillock.h> /* For _PATH_MAILDIR */
Damien Miller5a3e6831999-12-27 09:48:56 +110034#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110035#ifdef HAVE_SYS_CDEFS_H
36# include <sys/cdefs.h> /* For __P() */
37#endif
Damien Milleree1c0b32000-01-21 00:18:15 +110038#ifdef HAVE_SYS_SYSMACROS_H
39# include <sys/sysmacros.h> /* For MIN, MAX, etc */
40#endif
Damien Miller0f91b4e2000-06-18 15:43:25 +100041#ifdef HAVE_SYS_STAT_H
42# include <sys/stat.h> /* For S_* constants and macros */
43#endif
Damien Millerb9c2ce82000-09-23 14:52:50 +110044#ifdef HAVE_NEXT
45# include <libc.h>
46#endif
Damien Miller0f91b4e2000-06-18 15:43:25 +100047
48#include <unistd.h> /* For STDIN_FILENO, etc */
Damien Miller78315eb2000-09-29 23:01:36 +110049#include <termios.h> /* Struct winsize */
Ben Lindstrom0d5af602001-01-09 00:50:29 +000050#include <fcntl.h> /* For O_NONBLOCK */
Damien Milleree1c0b32000-01-21 00:18:15 +110051
Damien Miller74d0d4a1999-12-29 02:24:35 +110052/* Constants */
53
Damien Miller5a3e6831999-12-27 09:48:56 +110054#ifndef SHUT_RDWR
55enum
56{
57 SHUT_RD = 0, /* No more receptions. */
58 SHUT_WR, /* No more transmissions. */
59 SHUT_RDWR /* No more receptions or transmissions. */
60};
61# define SHUT_RD SHUT_RD
62# define SHUT_WR SHUT_WR
63# define SHUT_RDWR SHUT_RDWR
64#endif
65
Damien Millerbc7c7cc2000-04-08 17:48:56 +100066#ifndef IPTOS_LOWDELAY
67# define IPTOS_LOWDELAY 0x10
68# define IPTOS_THROUGHPUT 0x08
69# define IPTOS_RELIABILITY 0x04
70# define IPTOS_LOWCOST 0x02
71# define IPTOS_MINCOST IPTOS_LOWCOST
72#endif /* IPTOS_LOWDELAY */
73
Damien Millera66626b2000-06-13 18:57:53 +100074#ifndef MAXPATHLEN
75# ifdef PATH_MAX
76# define MAXPATHLEN PATH_MAX
77# else /* PATH_MAX */
78# define MAXPATHLEN 64 /* Should be safe */
79# endif /* PATH_MAX */
80#endif /* MAXPATHLEN */
81
Damien Miller0f91b4e2000-06-18 15:43:25 +100082#ifndef STDIN_FILENO
83# define STDIN_FILENO 0
84#endif
85#ifndef STDOUT_FILENO
86# define STDOUT_FILENO 1
87#endif
88#ifndef STDERR_FILENO
89# define STDERR_FILENO 2
90#endif
91
Ben Lindstrom0d5af602001-01-09 00:50:29 +000092#ifndef O_NONBLOCK /* Non Blocking Open */
93# define O_NONBLOCK 00004
94#endif
95
Damien Miller0f91b4e2000-06-18 15:43:25 +100096#ifndef S_ISREG
97# define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
98# define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
99#endif /* S_ISREG */
100
101#ifndef S_IXUSR
102# define S_IXUSR 0000100 /* execute/search permission, */
103# define S_IXGRP 0000010 /* execute/search permission, */
104# define S_IXOTH 0000001 /* execute/search permission, */
105# define _S_IWUSR 0000200 /* write permission, */
106# define S_IWUSR _S_IWUSR /* write permission, owner */
107# define S_IWGRP 0000020 /* write permission, group */
108# define S_IWOTH 0000002 /* write permission, other */
109# define S_IRUSR 0000400 /* read permission, owner */
110# define S_IRGRP 0000040 /* read permission, group */
111# define S_IROTH 0000004 /* read permission, other */
112# define S_IRWXU 0000700 /* read, write, execute */
113# define S_IRWXG 0000070 /* read, write, execute */
114# define S_IRWXO 0000007 /* read, write, execute */
115#endif /* S_IXUSR */
116
Damien Miller74d0d4a1999-12-29 02:24:35 +1100117/* Types */
118
Damien Miller5a3e6831999-12-27 09:48:56 +1100119/* If sys/types.h does not supply intXX_t, supply them ourselves */
120/* (or die trying) */
Damien Millercaf6dd62000-08-29 11:33:50 +1100121
122#ifndef HAVE_U_INT
123typedef unsigned int u_int;
124#endif
125
Damien Miller5a3e6831999-12-27 09:48:56 +1100126#ifndef HAVE_INTXX_T
Damien Millere0f45742000-01-18 09:12:06 +1100127# if (SIZEOF_CHAR == 1)
128typedef char int8_t;
129# else
130# error "8 bit int type not found."
131# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100132# if (SIZEOF_SHORT_INT == 2)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100133typedef short int int16_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100134# else
135# error "16 bit int type not found."
136# endif
137# if (SIZEOF_INT == 4)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100138typedef int int32_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100139# else
140# error "32 bit int type not found."
141# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100142#endif
143
144/* If sys/types.h does not supply u_intXX_t, supply them ourselves */
145#ifndef HAVE_U_INTXX_T
146# ifdef HAVE_UINTXX_T
Damien Millere0f45742000-01-18 09:12:06 +1100147typedef uint8_t u_int8_t;
Damien Miller74d0d4a1999-12-29 02:24:35 +1100148typedef uint16_t u_int16_t;
149typedef uint32_t u_int32_t;
Damien Miller6b85a7f2000-01-02 11:45:33 +1100150# define HAVE_U_INTXX_T 1
Damien Miller5a3e6831999-12-27 09:48:56 +1100151# else
Damien Millere0f45742000-01-18 09:12:06 +1100152# if (SIZEOF_CHAR == 1)
153typedef unsigned char u_int8_t;
154# else
155# error "8 bit int type not found."
156# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100157# if (SIZEOF_SHORT_INT == 2)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100158typedef unsigned short int u_int16_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100159# else
160# error "16 bit int type not found."
161# endif
162# if (SIZEOF_INT == 4)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100163typedef unsigned int u_int32_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100164# else
165# error "32 bit int type not found."
166# endif
Damien Miller578783e2000-09-23 14:12:24 +1100167# endif
168#endif
169
170/* 64-bit types */
171#ifndef HAVE_INT64_T
172# if (SIZEOF_LONG_INT == 8)
173typedef long int int64_t;
Ben Lindstrom16a86be2001-01-23 16:26:52 +0000174# define HAVE_INT64_T 1
Damien Miller578783e2000-09-23 14:12:24 +1100175# else
176# if (SIZEOF_LONG_LONG_INT == 8)
177typedef long long int int64_t;
Ben Lindstrom16a86be2001-01-23 16:26:52 +0000178# define HAVE_INT64_T 1
Damien Miller578783e2000-09-23 14:12:24 +1100179# endif
180# endif
181#endif
182#ifndef HAVE_U_INT64_T
183# if (SIZEOF_LONG_INT == 8)
184typedef unsigned long int u_int64_t;
Ben Lindstrom16a86be2001-01-23 16:26:52 +0000185# define HAVE_U_INT64_T 1
Damien Miller578783e2000-09-23 14:12:24 +1100186# else
187# if (SIZEOF_LONG_LONG_INT == 8)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100188typedef unsigned long long int u_int64_t;
Ben Lindstrom16a86be2001-01-23 16:26:52 +0000189# define HAVE_U_INT64_T 1
Damien Miller5a3e6831999-12-27 09:48:56 +1100190# endif
191# endif
192#endif
193
Damien Miller74d0d4a1999-12-29 02:24:35 +1100194#ifndef HAVE_SOCKLEN_T
195typedef unsigned int socklen_t;
Damien Millerb2532b31999-12-31 09:18:12 +1100196# define HAVE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +1100197#endif /* HAVE_SOCKLEN_T */
198
Damien Miller95058511999-12-29 10:36:45 +1100199#ifndef HAVE_SIZE_T
200typedef unsigned int size_t;
Damien Millerb2532b31999-12-31 09:18:12 +1100201# define HAVE_SIZE_T
Damien Miller95058511999-12-29 10:36:45 +1100202#endif /* HAVE_SIZE_T */
203
Damien Miller615f9392000-05-17 22:53:33 +1000204#ifndef HAVE_SSIZE_T
205typedef int ssize_t;
206# define HAVE_SSIZE_T
207#endif /* HAVE_SSIZE_T */
208
Ben Lindstrom0d5af602001-01-09 00:50:29 +0000209#ifndef HAVE_CLOCK_T
210typedef long clock_t;
211# define HAVE_CLOCK_T
Kevin Steves69f8fb32001-01-09 18:09:13 +0000212#endif /* HAVE_CLOCK_T */
Ben Lindstrom0d5af602001-01-09 00:50:29 +0000213
Damien Millerb54b40e2000-06-23 08:23:34 +1000214#ifndef HAVE_SA_FAMILY_T
215typedef int sa_family_t;
216# define HAVE_SA_FAMILY_T
217#endif /* HAVE_SA_FAMILY_T */
218
Damien Miller0f91b4e2000-06-18 15:43:25 +1000219#ifndef HAVE_PID_T
220typedef int pid_t;
221# define HAVE_PID_T
222#endif /* HAVE_PID_T */
223
224#ifndef HAVE_MODE_T
225typedef int mode_t;
226# define HAVE_MODE_T
227#endif /* HAVE_MODE_T */
228
Damien Miller34132e52000-01-14 15:45:46 +1100229#if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS)
230# define ss_family __ss_family
231#endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */
232
Damien Miller78315eb2000-09-29 23:01:36 +1100233#ifndef HAVE_SYS_UN_H
234struct sockaddr_un {
235 short sun_family; /* AF_UNIX */
236 char sun_path[108]; /* path name (gag) */
237};
238#endif /* HAVE_SYS_UN_H */
239
240#if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE)
241#define _STRUCT_WINSIZE
242struct winsize {
243 unsigned short ws_row; /* rows, in characters */
244 unsigned short ws_col; /* columns, in character */
245 unsigned short ws_xpixel; /* horizontal size, pixels */
246 unsigned short ws_ypixel; /* vertical size, pixels */
247};
248#endif
249
Damien Miller74d0d4a1999-12-29 02:24:35 +1100250/* Paths */
251
Damien Miller5a3e6831999-12-27 09:48:56 +1100252#ifndef _PATH_BSHELL
253# define _PATH_BSHELL "/bin/sh"
254#endif
255
256#ifdef USER_PATH
257# ifdef _PATH_STDPATH
258# undef _PATH_STDPATH
259# endif
260# define _PATH_STDPATH USER_PATH
261#endif
262
263#ifndef _PATH_STDPATH
264# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
265#endif
266
267#ifndef _PATH_DEVNULL
268# define _PATH_DEVNULL "/dev/null"
269#endif
270
Damien Miller615f9392000-05-17 22:53:33 +1000271#ifndef MAIL_DIRECTORY
272# define MAIL_DIRECTORY "/var/spool/mail"
273#endif
274
Damien Miller5a3e6831999-12-27 09:48:56 +1100275#ifndef MAILDIR
276# define MAILDIR MAIL_DIRECTORY
277#endif
278
279#if !defined(_PATH_MAILDIR) && defined(MAILDIR)
280# define _PATH_MAILDIR MAILDIR
281#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
282
Damien Miller74d0d4a1999-12-29 02:24:35 +1100283#ifndef _PATH_RSH
284# ifdef RSH_PATH
285# define _PATH_RSH RSH_PATH
Damien Miller72c9a7e2000-09-24 11:10:13 +1100286# else /* RSH_PATH */
287# define _PATH_RSH "/usr/bin/rsh"
Damien Miller74d0d4a1999-12-29 02:24:35 +1100288# endif /* RSH_PATH */
289#endif /* _PATH_RSH */
290
Damien Millerad833b32000-08-23 10:46:23 +1000291#ifndef _PATH_NOLOGIN
292# define _PATH_NOLOGIN "/etc/nologin"
293#endif
294
Damien Miller72c9a7e2000-09-24 11:10:13 +1100295/* Define this to be the path of the xauth program. */
296#ifndef XAUTH_PATH
297#define XAUTH_PATH "/usr/X11R6/bin/xauth"
298#endif /* XAUTH_PATH */
299
Damien Miller74d0d4a1999-12-29 02:24:35 +1100300/* Macros */
301
Damien Millerad833b32000-08-23 10:46:23 +1000302#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
303# define HAVE_LOGIN_CAP
304#endif
305
Damien Miller5a3e6831999-12-27 09:48:56 +1100306#ifndef MAX
307# define MAX(a,b) (((a)>(b))?(a):(b))
308# define MIN(a,b) (((a)<(b))?(a):(b))
309#endif
310
311#ifndef timersub
312#define timersub(a, b, result) \
313 do { \
314 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
315 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
316 if ((result)->tv_usec < 0) { \
317 --(result)->tv_sec; \
318 (result)->tv_usec += 1000000; \
319 } \
320 } while (0)
321#endif
322
Damien Miller5a3e6831999-12-27 09:48:56 +1100323#ifndef __P
324# define __P(x) x
325#endif
326
Damien Miller1c67c992000-03-14 10:16:34 +1100327#if !defined(IN6_IS_ADDR_V4MAPPED)
328# define IN6_IS_ADDR_V4MAPPED(a) \
Damien Millerdb819592000-03-14 13:44:01 +1100329 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
330 (((u_int32_t *) (a))[2] == htonl (0xffff)))
Damien Miller1c67c992000-03-14 10:16:34 +1100331#endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
332
Damien Miller5a3e6831999-12-27 09:48:56 +1100333#if !defined(__GNUC__) || (__GNUC__ < 2)
Damien Millere0f45742000-01-18 09:12:06 +1100334# define __attribute__(x)
Damien Miller5a3e6831999-12-27 09:48:56 +1100335#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
336
Damien Miller3241fa12000-08-18 14:59:59 +1000337#ifndef SUN_LEN
338#define SUN_LEN(su) \
339 (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))
340#endif /* SUN_LEN */
341
Damien Miller74d0d4a1999-12-29 02:24:35 +1100342/* Function replacement / compatibility hacks */
343
344/* In older versions of libpam, pam_strerror takes a single argument */
345#ifdef HAVE_OLD_PAM
346# define PAM_STRERROR(a,b) pam_strerror((b))
347#else
348# define PAM_STRERROR(a,b) pam_strerror((a),(b))
349#endif
350
Damien Miller82cf0ce2000-12-20 13:34:48 +1100351#ifdef PAM_SUN_CODEBASE
352# define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member)
353#else
354# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
355#endif
356
Damien Millereca71f82000-01-20 22:38:27 +1100357#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
358# undef HAVE_GETADDRINFO
Damien Millerd54e55c2001-01-04 09:07:12 +1100359#endif
360#if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO)
361# undef HAVE_FREEADDRINFO
362#endif
363#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR)
364# undef HAVE_GAI_STRERROR
365#endif
Damien Millereca71f82000-01-20 22:38:27 +1100366
Damien Miller615f9392000-05-17 22:53:33 +1000367#if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
368# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
369#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
370
Damien Millerbe260a02000-05-30 12:57:46 +1000371#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
372# define atexit(a) on_exit(a)
Ben Lindstromb5628642000-10-18 00:02:25 +0000373#else
374# if defined(HAVE_XATEXIT)
375# define atexit(a) xatexit(a)
376# endif /* defined(HAVE_XATEXIT) */
Damien Millerbe260a02000-05-30 12:57:46 +1000377#endif /* !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT) */
378
Damien Millerbac2d8a2000-09-05 16:13:06 +1100379#if defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP)
380# define USE_VHANGUP
381#endif /* defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP) */
382
Damien Miller606f8802000-09-16 15:39:56 +1100383#ifndef GETPGRP_VOID
384# define getpgrp() getpgrp(0)
385#endif
386
Damien Miller72c9a7e2000-09-24 11:10:13 +1100387/*
388 * Define this to use pipes instead of socketpairs for communicating with the
389 * client program. Socketpairs do not seem to work on all systems.
390 *
391 * configure.in sets this for a few OS's which are known to have problems
392 * but you may need to set it yourself
393 */
394/* #define USE_PIPES 1 */
395
andre2ff7b5d2000-06-03 14:57:40 +0000396/**
397 ** login recorder definitions
398 **/
399
400/* preprocess */
401
402#ifdef HAVE_UTMP_H
403# ifdef HAVE_TIME_IN_UTMP
404# include <time.h>
405# endif
406# include <utmp.h>
407#endif
408#ifdef HAVE_UTMPX_H
409# ifdef HAVE_TV_IN_UTMPX
410# include <sys/time.h>
411# endif
412# include <utmpx.h>
413#endif
414#ifdef HAVE_LASTLOG_H
415# include <lastlog.h>
416#endif
417#ifdef HAVE_PATHS_H
418# include <paths.h>
419#endif
420
421/* FIXME: put default paths back in */
Damien Miller36ccb5c2000-08-09 16:34:27 +1000422#ifndef UTMP_FILE
423# ifdef _PATH_UTMP
424# define UTMP_FILE _PATH_UTMP
425# else
426# ifdef CONF_UTMP_FILE
427# define UTMP_FILE CONF_UTMP_FILE
428# endif
429# endif
andre2ff7b5d2000-06-03 14:57:40 +0000430#endif
Damien Miller36ccb5c2000-08-09 16:34:27 +1000431#ifndef WTMP_FILE
432# ifdef _PATH_WTMP
433# define WTMP_FILE _PATH_WTMP
434# else
435# ifdef CONF_WTMP_FILE
436# define WTMP_FILE CONF_WTMP_FILE
437# endif
438# endif
andre2ff7b5d2000-06-03 14:57:40 +0000439#endif
440/* pick up the user's location for lastlog if given */
Damien Miller36ccb5c2000-08-09 16:34:27 +1000441#ifndef LASTLOG_FILE
442# ifdef _PATH_LASTLOG
443# define LASTLOG_FILE _PATH_LASTLOG
444# else
445# ifdef CONF_LASTLOG_FILE
446# define LASTLOG_FILE CONF_LASTLOG_FILE
447# endif
448# endif
Damien Miller2994e082000-06-04 15:51:47 +1000449#endif
andre2ff7b5d2000-06-03 14:57:40 +0000450
451
452/* The login() library function in libutil is first choice */
453#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
454# define USE_LOGIN
455
456#else
457/* Simply select your favourite login types. */
458/* Can't do if-else because some systems use several... <sigh> */
459# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
460# define USE_UTMPX
461# endif
462# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
463# define USE_UTMP
464# endif
465# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
466# define USE_WTMPX
467# endif
468# if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
469# define USE_WTMP
470# endif
471
472#endif
473
474/* I hope that the presence of LASTLOG_FILE is enough to detect this */
475#if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
476# define USE_LASTLOG
477#endif
478
479/* which type of time to use? (api.c) */
480#ifdef HAVE_SYS_TIME_H
481# define USE_TIMEVAL
482#endif
483
484/** end of login recorder definitions */
485
Damien Miller6b85a7f2000-01-02 11:45:33 +1100486#endif /* _DEFINES_H */