I think pofile.c belongs in the util directory.

This commit is contained in:
Enno Rehling 2018-05-18 00:08:30 +02:00
parent 7fa568da09
commit 42f59fbd9e
5 changed files with 4 additions and 5 deletions

View file

@ -126,7 +126,6 @@ set (ERESSEA_SRC
summary.c
travelthru.c
monsters.c
pofile.c
wormhole.c
xmlreader.c
${SPELLS_SRC}

View file

@ -37,6 +37,7 @@ without prior permission by the authors of Eressea.
#include "util/message.h"
#include "util/nrmessage.h"
#include "util/path.h"
#include "util/pofile.h"
#include "util/strings.h"
#include "util/xml.h"
@ -45,7 +46,6 @@ without prior permission by the authors of Eressea.
#include "keyword.h"
#include "move.h"
#include "prefix.h"
#include "pofile.h"
#include "skill.h"
/* external libraries */

View file

@ -51,6 +51,7 @@ nrmessage.c
parser.c
password.c
path.c
pofile.c
rand.c
resolve.c
strings.c

View file

@ -3,9 +3,8 @@
#endif
#include "pofile.h"
#include "util/log.h"
#include "util/strings.h"
#include "log.h"
#include "strings.h"
#include <ctype.h>
#include <stdio.h>