summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2002-07-22 16:20:29 +0000
committerKevin Steves <stevesk@pobox.com>2002-07-22 16:20:29 +0000
commit066e1ab8a36123a910e4dc7b3e2eb15890234a60 (patch)
treea42e393003323787edc85d93a84e17b1be48e343
parentbeb5f3304b74fe04a1fde815fe70ecf2f30e95b1 (diff)
- (stevesk) [xmmap.c] missing prototype for fatal()
-rw-r--r--ChangeLog3
-rw-r--r--openbsd-compat/xmmap.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 432d7a813..24796c4a2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
120020722 120020722
2 - (bal) AIX tty data limiting patch fix by leigh@solinno.co.uk 2 - (bal) AIX tty data limiting patch fix by leigh@solinno.co.uk
3 - (stevesk) [xmmap.c] missing prototype for fatal()
3 4
420020721 520020721
5 - (stevesk) [auth-pam.c] merge cosmetic changes from solar's 6 - (stevesk) [auth-pam.c] merge cosmetic changes from solar's
@@ -1411,4 +1412,4 @@
1411 - (stevesk) entropy.c: typo in debug message 1412 - (stevesk) entropy.c: typo in debug message
1412 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1413 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1413 1414
1414$Id: ChangeLog,v 1.2387 2002/07/22 15:28:53 mouring Exp $ 1415$Id: ChangeLog,v 1.2388 2002/07/22 16:20:29 stevesk Exp $
diff --git a/openbsd-compat/xmmap.c b/openbsd-compat/xmmap.c
index a6b7d3bdf..8f1d2022c 100644
--- a/openbsd-compat/xmmap.c
+++ b/openbsd-compat/xmmap.c
@@ -26,6 +26,8 @@
26#include <sys/mman.h> 26#include <sys/mman.h>
27#endif 27#endif
28 28
29#include "log.h"
30
29void *xmmap(size_t size) 31void *xmmap(size_t size)
30{ 32{
31 void *address; 33 void *address;