home · contact · privacy
Removed if-redundancy in get_drawfunc_by_char().
[plomrogue] / src / rexit.h
index 4c6ddb00dbf4da8f9dec44da1bc9432ab5017871..47a9993eb6d92a50130548d350c4da92cbc7073d 100644 (file)
@@ -10,7 +10,6 @@
 
 
 #include <stdint.h> /* for uint8_t */
-struct World;
 
 
 
@@ -34,16 +33,14 @@ extern void set_cleanup_flag(enum cleanup_flag flag);
 
 
 /* Exit orderly, clean up. */
-extern void exit_game(struct World * world);
-
-
+extern void exit_game();
 
 /* If "err" == 0, do nothing. Else, clean up and exit with an error message that
  * consists, first, of "msg" or (if "msg" is a NULL pointer) a generic "Details
  * unknown", secondly of "err" as the "internal error code", and thirdly of
  * errno if it is non-zero.
  */
-extern void exit_err(uint8_t err, struct World * world, char * msg);
+extern void exit_err(uint8_t err, char * msg);