[Lua] Fixing "memset" and "memcpy" can't be found on BB port.

This commit is contained in:
James Chen 2013-04-27 14:45:00 +08:00
parent eb0358fda6
commit 91036225c3
1 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,11 @@ extern "C" {
#include "ccTypes.h"
#include "cocoa/CCObject.h"
#if CC_TARGET_PLATFORM == CC_PLATFORM_BLACKBERRY
using std::memset;
using std::memcpy;
#endif
NS_CC_BEGIN
typedef int LUA_FUNCTION;