Port to Windows #3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
Wrap any unix‐only functions using #defines so that depending on the macros defined by the host platform the internals of the function make use of the appropriate #includes and system functions.
For example, clock_gettime() in main.c requires unistd.h, which will not compile on Windows. As such, any calls to clock_gettime() should be done through a wrapper who's definition depends on the presence of system macros described above.
For a successful implementation of this feature request: