- (dtucker) [openbsd-compat/{bsd-arc4random.c,port-tun.c,xmmap.c}] Lots of
   #include stdarg.h, needed for log.h.
diff --git a/ChangeLog b/ChangeLog
index c3641cf..8835fec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -98,6 +98,8 @@
    includes for Linux in
  - (dtucker) [cleanup.c] Need defines.h for __dead.
  - (dtucker) [auth2-gss.c] We still need the #ifdef GSSAPI in -portable.
+ - (dtucker) [openbsd-compat/{bsd-arc4random.c,port-tun.c,xmmap.c}] Lots of
+   #include stdarg.h, needed for log.h.
 
 20060804
  - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@@ -5168,4 +5170,4 @@
    - (djm) Trim deprecated options from INSTALL. Mention UsePAM
    - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
 
-$Id: ChangeLog,v 1.4460 2006/08/05 05:24:59 dtucker Exp $
+$Id: ChangeLog,v 1.4461 2006/08/05 05:47:26 dtucker Exp $
diff --git a/openbsd-compat/bsd-arc4random.c b/openbsd-compat/bsd-arc4random.c
index c1aecfe..d45fb18 100644
--- a/openbsd-compat/bsd-arc4random.c
+++ b/openbsd-compat/bsd-arc4random.c
@@ -17,7 +17,9 @@
 #include "includes.h"
 
 #include <sys/types.h>
+
 #include <string.h>
+#include <stdarg.h>
 
 #include "log.h"
 
diff --git a/openbsd-compat/port-tun.c b/openbsd-compat/port-tun.c
index 3e73d8c..cadc331 100644
--- a/openbsd-compat/port-tun.c
+++ b/openbsd-compat/port-tun.c
@@ -23,6 +23,7 @@
 
 #include <errno.h>
 #include <fcntl.h>
+#include <stdarg.h>
 #include <string.h>
 #include <unistd.h>
 
diff --git a/openbsd-compat/xmmap.c b/openbsd-compat/xmmap.c
index 6a1708e..95d5055 100644
--- a/openbsd-compat/xmmap.c
+++ b/openbsd-compat/xmmap.c
@@ -23,7 +23,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-/* $Id: xmmap.c,v 1.10 2006/07/25 09:52:08 dtucker Exp $ */
+/* $Id: xmmap.c,v 1.11 2006/08/05 05:47:27 dtucker Exp $ */
 
 #include "includes.h"
 
@@ -32,11 +32,12 @@
 #include <sys/mman.h>
 #endif
 #include <sys/stat.h>
+
 #ifdef HAVE_FCNTL_H
 # include <fcntl.h>
 #endif
-
 #include <errno.h>
+#include <stdarg.h>
 #include <string.h>
 #include <unistd.h>