]> andersk Git - openssh.git/commitdiff
- (dtucker) [openbsd-compat/strtonum.c] Include stdlib.h for strtoll,
authordtucker <dtucker>
Sat, 5 Aug 2006 06:27:20 +0000 (06:27 +0000)
committerdtucker <dtucker>
Sat, 5 Aug 2006 06:27:20 +0000 (06:27 +0000)
   otherwise it is implicitly declared as returning an int.

ChangeLog
openbsd-compat/strtonum.c

index 7d7c32dcbff207918ba1c8603e844ea0bc137ce6..a901e8974dc19d6bcc70ca574bda5e8fb09f4df7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
  - (dtucker) [entropy.c] Needs unistd.h too.
  - (dtucker) [ssh-rand-helper.c] Needs stdarg.h for log.h.
  - (dtucker) [openbsd-compat/getrrsetbyname.c] Nees stdlib.h for malloc.
+ - (dtucker) [openbsd-compat/strtonum.c] Include stdlib.h for strtoll,
+   otherwise it is implicitly declared as returning an int.
 
 20060804
  - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
index 35c5c18b9520165241d4804d3be402fd4cfa9f0a..87f2f24b25839d33c41587d7943416a5b0625052 100644 (file)
@@ -20,7 +20,9 @@
 /* OPENBSD ORIGINAL: lib/libc/stdlib/strtonum.c */
 
 #include "includes.h"
+
 #ifndef HAVE_STRTONUM
+#include <stdlib.h>
 #include <limits.h>
 #include <errno.h>
 
This page took 0.110077 seconds and 5 git commands to generate.