|
From: Crossfire C. r. messages.
<cro...@li...> - 2009-10-24 21:50:58
|
Revision: 12222
http://crossfire.svn.sourceforge.net/crossfire/?rev=12222&view=rev
Author: akirschbaum
Date: 2009-10-24 21:50:51 +0000 (Sat, 24 Oct 2009)
Log Message:
-----------
Remove old-style function definitions.
Modified Paths:
--------------
server/trunk/common/loader.l
Modified: server/trunk/common/loader.l
===================================================================
--- server/trunk/common/loader.l 2009-10-24 21:49:18 UTC (rev 12221)
+++ server/trunk/common/loader.l 2009-10-24 21:50:51 UTC (rev 12222)
@@ -1132,7 +1132,7 @@
* is found. Modified 4/26/2000 to also strip spaces at end of
* line
*/
-static char *yval()
+static char *yval(void)
{
static char *em = "";
char *cp, *end;
@@ -1317,13 +1317,13 @@
* @todo
* remove as it is empty.
*/
-void init_vars() {
+void init_vars(void) {
}
/**
* Frees all memory allocated by the loader.
*/
-void free_loader() {
+void free_loader(void) {
yy_delete_buffer(YY_CURRENT_BUFFER);
/* Comment out this yylex_destroy(), as it results in link errors
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|