diff options
author | INADA Naoki <songofacandy@gmail.com> | 2012-06-26 13:21:10 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2012-06-26 13:21:10 +0900 |
commit | 812c8bcff42a5b77f9ddfce70289bf754cca108c (patch) | |
tree | 786cdbc5b14aef7ffe90cc0093d7fd9f1af424af /msgpack/unpack_define.h | |
parent | 5b0353eac610a23742d80f2f243884364e14f67d (diff) | |
download | msgpack-python-812c8bcff42a5b77f9ddfce70289bf754cca108c.tar.gz |
Update msgpack version.
Diffstat (limited to 'msgpack/unpack_define.h')
-rw-r--r-- | msgpack/unpack_define.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/msgpack/unpack_define.h b/msgpack/unpack_define.h index 63d90a8..959d351 100644 --- a/msgpack/unpack_define.h +++ b/msgpack/unpack_define.h @@ -1,7 +1,7 @@ /* * MessagePack unpacking routine template * - * Copyright (C) 2008-2009 FURUHASHI Sadayuki + * Copyright (C) 2008-2010 FURUHASHI Sadayuki * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,7 +18,8 @@ #ifndef MSGPACK_UNPACK_DEFINE_H__ #define MSGPACK_UNPACK_DEFINE_H__ -#include "sysdep.h" +#include "msgpack/sysdep.h" +#include <stdlib.h> #include <string.h> #include <assert.h> #include <stdio.h> @@ -28,8 +29,8 @@ extern "C" { #endif -#ifndef MSGPACK_MAX_STACK_SIZE -#define MSGPACK_MAX_STACK_SIZE 16 +#ifndef MSGPACK_EMBED_STACK_SIZE +#define MSGPACK_EMBED_STACK_SIZE 32 #endif |