Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CTL git does not compile on windows (part 2) #53

Closed
ggarra13 opened this issue Aug 18, 2014 · 1 comment
Closed

CTL git does not compile on windows (part 2) #53

ggarra13 opened this issue Aug 18, 2014 · 1 comment

Comments

@ggarra13
Copy link

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\>

endif

@michaeldsmith
Copy link
Collaborator

windows compile was fixed by #107 - please reopen or submit new issues if needed

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants