Coverage Report

Created: 2017-04-15 07:07

/home/travis/build/MoarVM/MoarVM/src/platform/io.h
Line
Count
Source
1
#if defined _WIN32
2
MVMint64 MVM_platform_lseek(int fd, MVMint64 offset, int origin);
3
MVMint64 MVM_platform_unlink(const char *pathname);
4
#else
5
15
#define MVM_platform_lseek lseek
6
#define MVM_platform_unlink unlink
7
#endif