Unverified Commit c27d6a56 authored by Adam Cozzette's avatar Adam Cozzette Committed by GitHub

Merge pull request #5212 from GregTho/win32close

Use ::_close rather than ::close in Win32 stubs.
parents 8c1748f1 703f1112
......@@ -334,7 +334,7 @@ FILE* fopen(const char* path, const char* mode) {
#endif
}
int close(int fd) { return ::close(fd); }
int close(int fd) { return ::_close(fd); }
int dup(int fd) { return ::_dup(fd); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment