]> git.pond.sub.org Git - empserver/commitdiff
Correct file name in the comments to match the actual file name.
authorRon Koenderink <rkoenderink@yahoo.ca>
Sat, 8 Jul 2006 00:27:20 +0000 (00:27 +0000)
committerRon Koenderink <rkoenderink@yahoo.ca>
Sat, 8 Jul 2006 00:27:20 +0000 (00:27 +0000)
include/empobj.h

index a6812b99171658a2ced0573600cc00e79d7ebed4..cc800fd5b386298396cb3a326960b344facec1c1 100644 (file)
@@ -25,7 +25,7 @@
  *
  *  ---
  *
- *  genobj.h: General empire objects.
+ *  empobj.h: General empire objects.
  * 
  *  Known contributors to this file:
  *     Ron Koenderink, 2006
 #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