From: Ray Strode Date: Wed, 30 May 2007 00:13:34 +0000 (-0400) Subject: drop the unused ply_read_some_bytes function X-Git-Tag: 0.1.0~237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79ee862f70ea47a524239e27a5d27007da7dc41f;p=thirdparty%2Fplymouth.git drop the unused ply_read_some_bytes function --- diff --git a/src/ply-utils.c b/src/ply-utils.c index 0571b3b6..cdff0efa 100644 --- a/src/ply-utils.c +++ b/src/ply-utils.c @@ -111,7 +111,7 @@ ply_write (int fd, return bytes_left_to_write == 0; } -ssize_t +static ssize_t ply_read_some_bytes (int fd, void *buffer, size_t max_bytes) diff --git a/src/ply-utils.h b/src/ply-utils.h index 4bb794cc..618d4fa8 100644 --- a/src/ply-utils.h +++ b/src/ply-utils.h @@ -47,9 +47,6 @@ bool ply_write (int fd, bool ply_read (int fd, void *buffer, size_t number_of_bytes); -ssize_t ply_read_some_bytes (int fd, - void *buffer, - size_t max_bytes); bool ply_fd_has_data (int fd); bool ply_fd_can_take_data (int fd);