From: Dan Nicolaescu Date: Mon, 15 Nov 2010 06:42:21 +0000 (-0800) Subject: * lib-src/test-distrib.c: Remove include guards for config.h and fcntl.h. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~45^2~236 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f16cafe3093ab440f235d5984f9bcfacfa8843e6;p=emacs.git * 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". --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index a4b0ff37d07..e402fe44f94 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,9 @@ +2010-11-15 Dan Nicolaescu + + * test-distrib.c: Remove include guards for config.h and fcntl.h. + (O_RDONLY): Do not define. + (cool_read): Fix type for variable "sofar". + 2010-10-25 Glenn Morris * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove easymenu.elc. 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 . */ -#ifdef HAVE_CONFIG_H #include -#endif - #include - -#ifdef HAVE_FCNTL_H #include -#endif #ifdef HAVE_UNISTD_H #include #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) {