summaryrefslogtreecommitdiff
path: root/includes.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-11 10:40:23 +1100
committerDamien Miller <djm@mindrot.org>1999-11-11 10:40:23 +1100
commitab18c412e6773b34e4640e4b9277573fd91a66bf (patch)
treef0ab48cd9e112a4d866785d2a5b64eda39986b4e /includes.h
parentb77870fa7341d95024e55a116a3454e9bfe2f21e (diff)
- Added (untested) Entropy Gathering Daemon (EGD) support
- Merged several minor fixed: - ssh-agent commandline parsing - RPM spec file now installs ssh setuid root - Makefile creates libdir - Merged beginnings of Solaris compability from Marc G. Fournier <marc.fournier@acadiau.ca>
Diffstat (limited to 'includes.h')
-rw-r--r--includes.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/includes.h b/includes.h
index a1a6da6bd..198e72979 100644
--- a/includes.h
+++ b/includes.h
@@ -37,7 +37,6 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
37#include <arpa/inet.h> 37#include <arpa/inet.h>
38#include <netdb.h> 38#include <netdb.h>
39 39
40#include <endian.h>
41#include <stdio.h> 40#include <stdio.h>
42#include <ctype.h> 41#include <ctype.h>
43#include <errno.h> 42#include <errno.h>
@@ -52,13 +51,18 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
52#include <grp.h> 51#include <grp.h>
53#include <unistd.h> 52#include <unistd.h>
54#include <time.h> 53#include <time.h>
55#include <paths.h>
56#include <dirent.h> 54#include <dirent.h>
57 55
58#include "version.h"
59
60#include "config.h" 56#include "config.h"
61 57
58#ifdef HAVE_PATHS_H
59# include <paths.h>
60#endif
61#ifdef HAVE_ENDIAN_H
62# include <endian.h>
63#endif
64
65#include "version.h"
62#include "helper.h" 66#include "helper.h"
63#include "mktemp.h" 67#include "mktemp.h"
64#include "strlcpy.h" 68#include "strlcpy.h"