]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/echo.c
Update copyright notice
[empserver] / src / lib / commands / echo.c
index e8e9475b41e03967b3f4c3528b436187ff165146..aa5042c49430118114dbdf06d377d773d65750b8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2005, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *  echo.c: Just echo something
- * 
+ *
  *  Known contributors to this file:
  *     Ken Stevens, 1995
  */
 
-#include "misc.h"
-#include "player.h"
+#include <config.h>
+
 #include "commands.h"
 
 int
 echo(void)
 {
-    pr("%s\n", player->argp[1] ? player->argp[1] : (s_char *)"");
+    pr("%s\n", player->argp[1] ? player->argp[1] : "");
 
     return RET_OK;
 }