evutil now includes stdarg.h directly

svn:r888
This commit is contained in:
Niels Provos 2008-06-28 00:50:52 +00:00
parent e29a5c82a8
commit 877fa44dda
3 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
Changes in 1.4.6-stable:
o evutil.h now includes <stdarg.h> directly
Changes in 1.4.5-stable:
o Fix connection keep-alive behavior for HTTP/1.0
o Fix use of freed memory in event_reinit; pointed out by Peter Postma

View File

@ -52,7 +52,6 @@
#if defined WIN32 && !defined(HAVE_GETTIMEOFDAY_H)
#include <sys/timeb.h>
#endif
#include <stdarg.h>
#include <stdio.h>
#include "evutil.h"

View File

@ -50,6 +50,7 @@ extern "C" {
#ifdef _EVENT_HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#include <stdarg.h>
#ifdef _EVENT_HAVE_UINT64_T
#define ev_uint64_t uint64_t