diff options
Diffstat (limited to 'src/char')
-rw-r--r-- | src/char/int_guild.c | 1 | ||||
-rw-r--r-- | src/char/int_homun.c | 1 | ||||
-rw-r--r-- | src/char/int_party.c | 1 | ||||
-rw-r--r-- | src/char/int_pet.c | 1 | ||||
-rw-r--r-- | src/char/int_storage.c | 2 | ||||
-rw-r--r-- | src/char/inter.c | 1 |
6 files changed, 7 insertions, 0 deletions
diff --git a/src/char/int_guild.c b/src/char/int_guild.c index daa80e6d6..6886287e2 100644 --- a/src/char/int_guild.c +++ b/src/char/int_guild.c @@ -7,6 +7,7 @@ #include "../common/cbasetypes.h" #include "../common/mmo.h" +#include "../common/malloc.h" #include "../common/socket.h" #include "../common/db.h" #include "../common/lock.h" diff --git a/src/char/int_homun.c b/src/char/int_homun.c index 6d93a375a..943f5b8c8 100644 --- a/src/char/int_homun.c +++ b/src/char/int_homun.c @@ -6,6 +6,7 @@ #include <string.h> #include "../common/mmo.h" +#include "../common/malloc.h" #include "../common/socket.h" #include "../common/db.h" #include "../common/lock.h" diff --git a/src/char/int_party.c b/src/char/int_party.c index 96a120aab..0612afb0b 100644 --- a/src/char/int_party.c +++ b/src/char/int_party.c @@ -7,6 +7,7 @@ #include "../common/cbasetypes.h" #include "../common/mmo.h" +#include "../common/malloc.h" #include "../common/socket.h" #include "../common/db.h" #include "../common/lock.h" diff --git a/src/char/int_pet.c b/src/char/int_pet.c index d1448c5a1..c49150a9c 100644 --- a/src/char/int_pet.c +++ b/src/char/int_pet.c @@ -6,6 +6,7 @@ #include <string.h> #include "../common/mmo.h" +#include "../common/malloc.h" #include "../common/socket.h" #include "../common/db.h" #include "../common/lock.h" diff --git a/src/char/int_storage.c b/src/char/int_storage.c index 5f1f68275..e19268508 100644 --- a/src/char/int_storage.c +++ b/src/char/int_storage.c @@ -1,10 +1,12 @@ // Copyright (c) Athena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder +#include <stdio.h> #include <string.h> #include <stdlib.h> #include "../common/mmo.h" +#include "../common/malloc.h" #include "../common/socket.h" #include "../common/db.h" #include "../common/lock.h" diff --git a/src/char/inter.c b/src/char/inter.c index e5e397709..a42202971 100644 --- a/src/char/inter.c +++ b/src/char/inter.c @@ -1,6 +1,7 @@ // Copyright (c) Athena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder +#include <stdio.h> #include <string.h> #include <stdlib.h> |