[Layout.c/h]: Minor modifications so that the Microsoft compiler can compile the file as C++ directly ; #77
Reference in New Issue
Block a user
No description provided.
Delete Branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Visual C++ doesn't support C99, the simplest way is to compile the C as C++ (by changing the extension or with the /Tp extension on the command line).
These changes account for the fact that its C++ instead of C (one explicit cast), and for the lib C differences.
Nice tricks