Replace fDATIME with ANSI/POSIX clock_gettime(). Rip out DOS/AMIGA shims.
[open-adventure.git] / main.c
diff --git a/main.c b/main.c
index 11e940acdbd59ebdb11d0cf002f2dbe72624ced9..54b33da625cc88a63c8085b4c0a27518fe3b538b 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1,11 +1,13 @@
+/*
+ * The author - Don Woods - apologises for the style of the code; it
+ * is a result of running the original Fortran IV source through a
+ * home-brew Fortran-to-C converter.)
+ */
 #include <stdlib.h>
 #include <stdio.h>
 #include "main.h"
 
 #include "misc.h"
-#ifdef __MSDOS__
-#include "alloc.h"
-#endif
 
 #define TRUE  (0==0)
 #define FALSE (0!=0)
@@ -48,7 +50,7 @@ extern int action(long);
  * MAIN PROGRAM
  */
 
-int main() {
+int main(int argc, char *argv[]) {
 
 /*  ADVENTURE (REV 2: 20 TREASURES) */