| 2691 | inline int FClose(FILE* fp) { return fclose(fp); } |
| 2692 | #if !GTEST_OS_WINDOWS_MOBILE |
| 2693 | inline int Read(int fd, void* buf, unsigned int count) { |
| 2694 | return static_cast<int>(read(fd, buf, count)); |
| 2695 | } |
| 2696 | inline int Write(int fd, const void* buf, unsigned int count) { |
| 2697 | return static_cast<int>(write(fd, buf, count)); |
| 2698 | } |
no outgoing calls
no test coverage detected