| 77 | auto dest = ::open((configDirectory + gFile).c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0644); |
| 78 | |
| 79 | struct stat stat_source; |
| 80 | ::fstat(source, &stat_source); |
| 81 | ::sendfile(dest, source, 0, stat_source.st_size); |
| 82 |
nothing calls this directly
no outgoing calls
no test coverage detected