aboutsummaryrefslogtreecommitdiff
path: root/src/lib/fdio/fdio.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-27 10:47:09 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-27 10:47:42 -0400
commit67135ca8e041ac922d1045fe833c8052e652e5e7 (patch)
tree399d4f1435ef6037b1bd36691c2d73927b4ebd69 /src/lib/fdio/fdio.h
parent05040a9e84caab86fb66793a7604887d2aaaa2d9 (diff)
downloadtor-67135ca8e041ac922d1045fe833c8052e652e5e7.tar.gz
tor-67135ca8e041ac922d1045fe833c8052e652e5e7.zip
Split read_all and write_all into separate functions
Diffstat (limited to 'src/lib/fdio/fdio.h')
-rw-r--r--src/lib/fdio/fdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/fdio/fdio.h b/src/lib/fdio/fdio.h
index 8cc4a04658..0fb3ed1e62 100644
--- a/src/lib/fdio/fdio.h
+++ b/src/lib/fdio/fdio.h
@@ -12,6 +12,6 @@ off_t tor_fd_getpos(int fd);
int tor_fd_setpos(int fd, off_t pos);
int tor_fd_seekend(int fd);
int tor_ftruncate(int fd);
-int write_all_to_fd(int fd, const char *buf, size_t count);
+int write_all_to_fd_minimal(int fd, const char *buf, size_t count);
#endif /* !defined(TOR_FDIO_H) */