diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-11-14 22:42:21 -0800 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-11-14 22:42:21 -0800 |
commit | f16cafe3093ab440f235d5984f9bcfacfa8843e6 (patch) | |
tree | dafe8682698f5b7c078e930422e686094c3d526f /lib-src/test-distrib.c | |
parent | aa42211e74791260a9d8ab7bdedff4b26664430d (diff) | |
download | emacs-f16cafe3093ab440f235d5984f9bcfacfa8843e6.tar.gz emacs-f16cafe3093ab440f235d5984f9bcfacfa8843e6.tar.bz2 emacs-f16cafe3093ab440f235d5984f9bcfacfa8843e6.zip |
* lib-src/test-distrib.c: Remove include guards for config.h and fcntl.h.
(O_RDONLY): Do not define.
(cool_read): Fix type for variable "sofar".
Diffstat (limited to 'lib-src/test-distrib.c')
-rw-r--r-- | lib-src/test-distrib.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/lib-src/test-distrib.c b/lib-src/test-distrib.c index 1487c2bab57..aca46f121fa 100644 --- a/lib-src/test-distrib.c +++ b/lib-src/test-distrib.c @@ -19,24 +19,14 @@ You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ -#ifdef HAVE_CONFIG_H #include <config.h> -#endif - #include <stdio.h> - -#ifdef HAVE_FCNTL_H #include <fcntl.h> -#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif -#ifndef O_RDONLY -#define O_RDONLY 0 -#endif - /* Break string in two parts to avoid buggy C compilers that ignore characters after nulls in strings. */ @@ -55,7 +45,7 @@ int cool_read (int fd, char *buf, size_t size) { ssize_t num; - size_t sofar = 0; + ssize_t sofar = 0; while (1) { |