From 1b0ff6cbac5861ad3159f94dbaf493eef003cf4e Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Sat, 8 Jul 2006 00:27:20 +0000 Subject: [PATCH] Correct file name in the comments to match the actual file name. --- include/empobj.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/empobj.h b/include/empobj.h index a6812b99..cc800fd5 100644 --- a/include/empobj.h +++ b/include/empobj.h @@ -25,7 +25,7 @@ * * --- * - * genobj.h: General empire objects. + * empobj.h: General empire objects. * * Known contributors to this file: * Ron Koenderink, 2006 @@ -35,18 +35,21 @@ #ifndef EMPOBJ_H #define EMPOBJ_H +#include "config.h" +#include "file.h" +#include "nat.h" #include "commodity.h" #include "land.h" #include "loan.h" #include "lost.h" #include "plane.h" -#include "nat.h" #include "news.h" #include "nuke.h" #include "sect.h" #include "ship.h" #include "trade.h" #include "treaty.h" +#include "prototypes.h" struct empobj { short ef_type; /* is always valid */ @@ -83,5 +86,6 @@ union empobj_storage { struct trtstr treaty; }; +extern char * probjname(union empobj_storage *gp); #endif