Add missing #include <stdlib.h>

This commit is contained in:
wbaumann 2012-01-12 20:11:25 +00:00
parent 6e8c8d5cb4
commit 3665f06808
3 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,10 @@
ChangeLog for davfs2 ChangeLog for davfs2
-------------------- --------------------


2012-01-12 Werner Baumann (werner.baumann@onlinehome.de)
* dav_coda.c, dav_fuse.c:
Add missing #include <stdlib.h>

2012-01-07 Werner Baumann (werner.baumann@onlinehome.de) 2012-01-07 Werner Baumann (werner.baumann@onlinehome.de)
* configure.ac: * configure.ac:
Use newer versions of auto-tools. Use newer versions of auto-tools.

View File

@ -37,6 +37,9 @@
#include <stdint.h> #include <stdint.h>
#endif #endif
#include <stdio.h> #include <stdio.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
#include <string.h> #include <string.h>
#endif #endif

View File

@ -33,6 +33,9 @@
#ifdef HAVE_STDINT_H #ifdef HAVE_STDINT_H
#include <stdint.h> #include <stdint.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
#include <string.h> #include <string.h>
#endif #endif