View | Details | Raw Unified | Return to bug 47191
Collapse All | Expand All

(-)strings/apr_strings.c (-4 lines)
Lines 55-64 Link Here
55
#define APR_WANT_STRFUNC
55
#define APR_WANT_STRFUNC
56
#include "apr_want.h"
56
#include "apr_want.h"
57
57
58
#ifdef HAVE_STDDEF_H
59
#include <stddef.h> /* NULL */
60
#endif
61
62
#ifdef HAVE_STDLIB_H
58
#ifdef HAVE_STDLIB_H
63
#include <stdlib.h> /* strtol and strtoll */
59
#include <stdlib.h> /* strtol and strtoll */
64
#endif
60
#endif
(-)include/apr.h.in (+7 lines)
Lines 123-128 Link Here
123
#include <winsock2.h>
123
#include <winsock2.h>
124
#endif
124
#endif
125
125
126
/* Needed to define NULL as a pointer type.
127
 * Necessary to silence gcc warnings about
128
 * missing sentinels in function calls.
129
 * Should be present in all supported platforms.
130
 */
131
#include <stddef.h>
132
126
#if APR_HAVE_SYS_TYPES_H
133
#if APR_HAVE_SYS_TYPES_H
127
#include <sys/types.h>
134
#include <sys/types.h>
128
#endif
135
#endif

Return to bug 47191