| 2335 | } |
| 2336 | #if !GTEST_OS_WINDOWS_MOBILE |
| 2337 | inline FILE *FReopen(const char* path, const char* mode, FILE* stream) { |
| 2338 | return freopen(path, mode, stream); |
| 2339 | } |
| 2340 | inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); } |
| 2341 | #endif |
| 2342 | inline int FClose(FILE* fp) { return fclose(fp); } |
nothing calls this directly
no outgoing calls
no test coverage detected