summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--includes.h3
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5c2c9d8fe..e510f9f42 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
3 - (tim) [monitor_mm.c] add missing declaration for xmmap(). Reported 3 - (tim) [monitor_mm.c] add missing declaration for xmmap(). Reported
4 by ayamura@ayamura.org 4 by ayamura@ayamura.org
5 - (tim) [configure.ac] Bug 267 rework int64_t test. 5 - (tim) [configure.ac] Bug 267 rework int64_t test.
6 - (tim) [includes.h] Bug 267 add stdint.h
6 7
720020717 820020717
8 - (bal) aixbff package updated by dtucker@zip.com.au 9 - (bal) aixbff package updated by dtucker@zip.com.au
@@ -1388,4 +1389,4 @@
1388 - (stevesk) entropy.c: typo in debug message 1389 - (stevesk) entropy.c: typo in debug message
1389 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1390 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1390 1391
1391$Id: ChangeLog,v 1.2376 2002/07/18 18:44:50 tim Exp $ 1392$Id: ChangeLog,v 1.2377 2002/07/18 18:49:32 tim Exp $
diff --git a/includes.h b/includes.h
index e20d7a519..f6aa2ae67 100644
--- a/includes.h
+++ b/includes.h
@@ -115,6 +115,9 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
115#ifdef HAVE_SYS_UN_H 115#ifdef HAVE_SYS_UN_H
116# include <sys/un.h> /* For sockaddr_un */ 116# include <sys/un.h> /* For sockaddr_un */
117#endif 117#endif
118#ifdef HAVE_STDINT_H
119# include <stdint.h>
120#endif
118#ifdef HAVE_SYS_BITYPES_H 121#ifdef HAVE_SYS_BITYPES_H
119# include <sys/bitypes.h> /* For u_intXX_t */ 122# include <sys/bitypes.h> /* For u_intXX_t */
120#endif 123#endif