diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-08-16 19:08:41 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-08-16 19:08:41 +0000 |
commit | 5dd60b0ea5e16eb326b472709feabd3c36e3d1b8 (patch) | |
tree | 58fd0a3497ea1821f631907605485cf3181c5211 /src/map/instance.c | |
parent | a2fbfec5216caa07a2acb1171a2f9153e46c1642 (diff) | |
download | hercules-5dd60b0ea5e16eb326b472709feabd3c36e3d1b8.tar.gz hercules-5dd60b0ea5e16eb326b472709feabd3c36e3d1b8.tar.bz2 hercules-5dd60b0ea5e16eb326b472709feabd3c36e3d1b8.tar.xz hercules-5dd60b0ea5e16eb326b472709feabd3c36e3d1b8.zip |
- Added missing #includes to fix some linux warnings.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14009 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/instance.c')
-rw-r--r-- | src/map/instance.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/instance.c b/src/map/instance.c index 887e0cb24..8c8f9e2fd 100644 --- a/src/map/instance.c +++ b/src/map/instance.c @@ -19,6 +19,12 @@ #include "party.h"
#include "pc.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdarg.h>
+#include <time.h>
+
int instance_start = 0; // To keep the last index + 1 of normal map inserted in the map[ARRAY]
struct s_instance instance[MAX_INSTANCE];
|