| 2881 | } |
| 2882 | #if !GTEST_OS_WINDOWS_MOBILE |
| 2883 | inline FILE *FReopen(const char* path, const char* mode, FILE* stream) { |
| 2884 | return freopen(path, mode, stream); |
| 2885 | } |
| 2886 | inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); } |
| 2887 | #endif |
| 2888 | inline int FClose(FILE* fp) { return fclose(fp); } |
nothing calls this directly
no outgoing calls
no test coverage detected