diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-06 11:17:08 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-06 11:17:08 +0000 |
commit | 1bb45f9de18cab62521ebfc46a16888891194277 (patch) | |
tree | e85b60085d08ec499d48b4c8e9fd05d4f9a06d73 | |
parent | 23867efcc4336f811cf6c424a62110d514ee8293 (diff) | |
download | hercules-1bb45f9de18cab62521ebfc46a16888891194277.tar.gz hercules-1bb45f9de18cab62521ebfc46a16888891194277.tar.bz2 hercules-1bb45f9de18cab62521ebfc46a16888891194277.tar.xz hercules-1bb45f9de18cab62521ebfc46a16888891194277.zip |
- Fixing a compilation error caused by me in rev 9414: -.-;
utils.h:35: error: syntax error before "va_list"
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9416 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | src/common/utils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/utils.h b/src/common/utils.h index fdc4afd9f..120224852 100644 --- a/src/common/utils.h +++ b/src/common/utils.h @@ -4,6 +4,7 @@ #ifndef COMMON_UTILS_H #define COMMON_UTILS_H +#include <stdarg.h> #ifndef NULL #define NULL (void *)0 |