signs.c
changeset 1093 4fdc46eaf423
parent 990 d2872f4948c1
child 1165 8fa7d3e235c6
--- a/signs.c	Sat Jan 22 19:41:30 2005 +0000
+++ b/signs.c	Sat Jan 22 20:23:18 2005 +0000
@@ -22,7 +22,7 @@
  * Update the coordinates of all signs
  *
  */
-void UpdateAllSignVirtCoords()
+void UpdateAllSignVirtCoords(void)
 {
 	SignStruct *ss;
 
@@ -53,7 +53,7 @@
  *
  * @return The pointer to the new sign, or NULL if there is no more free space
  */
-static SignStruct *AllocateSign()
+static SignStruct *AllocateSign(void)
 {
 	SignStruct *s;
 	FOR_ALL_SIGNS(s)
@@ -173,7 +173,7 @@
  * Initialize the signs
  *
  */
-void InitializeSigns()
+void InitializeSigns(void)
 {
 	SignStruct *s;
 	int i;
@@ -200,7 +200,7 @@
  * Save all signs
  *
  */
-static void Save_SIGN()
+static void Save_SIGN(void)
 {
 	SignStruct *s;
 
@@ -218,7 +218,7 @@
  * Load all signs
  *
  */
-static void Load_SIGN()
+static void Load_SIGN(void)
 {
 	int index;
 	while ((index = SlIterateArray()) != -1) {