This patch compiles the help file,
--- makefile.orig 2023-04-29 09:11:40.000000000 -0700
+++ makefile 2023-04-29 09:08:46.000000000 -0700
@@ -4,7 +4,7 @@
# Compile::Watcom Resource Compiler
# Compile::GNU C
# Make: nmake or GNU make
-all : atccnr.exe
+all : atccnr.exe atccnr.hlp
atccnr.exe : atccnr.obj help.obj atccnr.res atccnr.def
gcc -Zomf atccnr.obj help.obj atccnr.res atccnr.def -o atccnr.exe
@@ -19,5 +19,8 @@
atccnr.res : atccnr.rc jet.ico
wrc -r atccnr.rc
+atccnr.hlp: atccnr.ipf
+ ipfc atccnr.ipf
+
clean :
- rm -rf *exe *RES *obj
\ No newline at end of file
+ rm -rf *exe *RES *obj *HLP
And one warning down, not sure about the signedness ones.
--- atccnr.c.orig 2023-04-29 09:06:48.000000000 -0700
+++ atccnr.c 2023-04-29 09:07:00.000000000 -0700
@@ -482,7 +482,7 @@
pacrTraverse->AssignedHeading = rand() % 360 + 1;
pacrTraverse->Speed =
pacrTraverse->AssignedSpeed = rand() % 20 + 10;
- sprintf (szBuf, "%s%ld", apszCallSignPrefixes [rand() % cPrefixes],
+ sprintf (szBuf, "%s%d", apszCallSignPrefixes [rand() % cPrefixes],
rand() % 1000);
pacrTraverse->pszCallsign = (PSZ) strdup (szBuf);