src/signs.h
changeset 6247 7d81e3a5d803
parent 5751 2fd40c57fc11
child 6248 e4a2ed7e5613
--- a/src/signs.h	Tue Mar 06 23:42:30 2007 +0000
+++ b/src/signs.h	Wed Mar 07 11:47:46 2007 +0000
@@ -18,7 +18,7 @@
 
 DECLARE_OLD_POOL(Sign, Sign, 2, 16000)
 
-static inline SignID GetMaxSignIndex(void)
+static inline SignID GetMaxSignIndex()
 {
 	/* TODO - This isn't the real content of the function, but
 	 *  with the new pool-system this will be replaced with one that
@@ -28,7 +28,7 @@
 	return GetSignPoolSize() - 1;
 }
 
-static inline uint GetNumSigns(void)
+static inline uint GetNumSigns()
 {
 	return GetSignPoolSize();
 }
@@ -59,12 +59,12 @@
 
 VARDEF bool _sign_sort_dirty;
 
-void UpdateAllSignVirtCoords(void);
+void UpdateAllSignVirtCoords();
 void PlaceProc_Sign(TileIndex tile);
 
 /* misc.c */
 void ShowRenameSignWindow(const Sign *si);
 
-void ShowSignList(void);
+void ShowSignList();
 
 #endif /* SIGNS_H */