diff options
Diffstat (limited to 'lib/file-util.c')
-rw-r--r-- | lib/file-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/file-util.c b/lib/file-util.c index 652cfd3..880bcb4 100644 --- a/lib/file-util.c +++ b/lib/file-util.c @@ -12,7 +12,7 @@ /** * INTR safe read - * Interface spec is similar to read. + * Interface spec is similar to read system call. */ ssize_t safe_read(int fd, void *buf, size_t count) { @@ -43,7 +43,7 @@ ssize_t safe_read(int fd, void *buf, size_t count) /** * INTR safe write - * Interface spec is similar to read. + * Interface spec is similar to write system call. */ ssize_t safe_write(int fd, void *buf, size_t count) { |