diff options
author | Darren Tucker <dtucker@zip.com.au> | 2007-04-29 14:02:43 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2007-04-29 14:02:43 +1000 |
commit | 2ac529b5055ebccd5c2251e373940eee156dc967 (patch) | |
tree | 86eafa1d95637cbd69ccc768d5fdd0d97d443fc1 | |
parent | cc40d5ecdfe1bdb8f37cc385669e8b6e0b641fb2 (diff) |
- (dtucker) [openbsd-compat/xmmap.c] Include stdlib.h for mkstemp prototype.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | openbsd-compat/xmmap.c | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -5,6 +5,7 @@ | |||
5 | - (dtucker) [configure.ac openbsd-compat/getrrsetbyname.c] Bug #1299: Use the | 5 | - (dtucker) [configure.ac openbsd-compat/getrrsetbyname.c] Bug #1299: Use the |
6 | platform's _res if it has one. Should fix problem of DNSSEC record lookups | 6 | platform's _res if it has one. Should fix problem of DNSSEC record lookups |
7 | on NetBSD as reported by Curt Sampson. | 7 | on NetBSD as reported by Curt Sampson. |
8 | - (dtucker) [openbsd-compat/xmmap.c] Include stdlib.h for mkstemp prototype. | ||
8 | 9 | ||
9 | 20070406 | 10 | 20070406 |
10 | - (dtucker) [INSTALL] Update the systems that have PAM as standard. Link | 11 | - (dtucker) [INSTALL] Update the systems that have PAM as standard. Link |
@@ -2886,4 +2887,4 @@ | |||
2886 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 2887 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
2887 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 2888 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
2888 | 2889 | ||
2889 | $Id: ChangeLog,v 1.4654 2007/04/29 03:58:06 dtucker Exp $ | 2890 | $Id: ChangeLog,v 1.4655 2007/04/29 04:02:43 dtucker Exp $ |
diff --git a/openbsd-compat/xmmap.c b/openbsd-compat/xmmap.c index 0fb23269b..397bc9653 100644 --- a/openbsd-compat/xmmap.c +++ b/openbsd-compat/xmmap.c | |||
@@ -23,7 +23,7 @@ | |||
23 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 | */ | 24 | */ |
25 | 25 | ||
26 | /* $Id: xmmap.c,v 1.12 2006/08/24 09:58:36 dtucker Exp $ */ | 26 | /* $Id: xmmap.c,v 1.13 2007/04/29 04:02:43 dtucker Exp $ */ |
27 | 27 | ||
28 | #include "includes.h" | 28 | #include "includes.h" |
29 | 29 | ||
@@ -38,6 +38,7 @@ | |||
38 | #endif | 38 | #endif |
39 | #include <errno.h> | 39 | #include <errno.h> |
40 | #include <stdarg.h> | 40 | #include <stdarg.h> |
41 | #include <stdlib.h> | ||
41 | #include <string.h> | 42 | #include <string.h> |
42 | #include <unistd.h> | 43 | #include <unistd.h> |
43 | 44 | ||