CTL
CTL copied to clipboard
CTL git does not compile on windows (part 2)
CtlInterpreter.cpp is missing several includes and uses the unportable lrand48() function.
Here are the includes I had to add to make it portable.
ifdef _WIN32
#include \<io.h\>
#include \<stdio.h\>
#include \<stdlib.h\>
#include \<time.h\>
#define snprintf _snprintf
else
#include \<unistd.h\>