2008-10-20 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Included cstdlib. This fixed the compile error with g++-4.3.2.
	* src/IteratableChecksumValidator.cc
	* src/IteratableChunkChecksumValidator.cc
pull/1/head
Tatsuhiro Tsujikawa 2008-10-20 12:20:40 +00:00
parent 2d0c618510
commit 07419749f2
3 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-10-20 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Included cstdlib. This fixed the compile error with g++-4.3.2.
* src/IteratableChecksumValidator.cc
* src/IteratableChunkChecksumValidator.cc
2008-10-20 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
* Release 0.16.2

View File

@ -33,6 +33,9 @@
*/
/* copyright --> */
#include "IteratableChecksumValidator.h"
#include <cstdlib>
#include "Util.h"
#include "message.h"
#include "SingleFileDownloadContext.h"

View File

@ -33,6 +33,11 @@
*/
/* copyright --> */
#include "IteratableChunkChecksumValidator.h"
#include <cerrno>
#include <cstring>
#include <cstdlib>
#include "Util.h"
#include "message.h"
#include "MessageDigestHelper.h"
@ -46,8 +51,6 @@
#include "Logger.h"
#include "messageDigest.h"
#include "StringFormat.h"
#include <cerrno>
#include <cstring>
namespace aria2 {