I was provided with the source code to modify the MS-DOS program created in 1992. I have an exe file and it works fine, but I need to change the source code. The source code needs the following headers to compile.
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <dos.h> #include <dir.h> #include <alloc.h> #include <ctype.h> #include <string.h> #include <mem.h> #include <values.h>
Does anyone know what was used, and are there any modern compilers that can handle this? I tried with Visual Studio 2010 and GCC out of the box, but it fails because some headers are missing (dir.h, alloc.h, mem.h, values.h)
source share