]> git.eshelyaron.com Git - emacs.git/commitdiff
* lib-src/test-distrib.c: Remove include guards for config.h and fcntl.h.
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 15 Nov 2010 06:42:21 +0000 (22:42 -0800)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 15 Nov 2010 06:42:21 +0000 (22:42 -0800)
(O_RDONLY): Do not define.
(cool_read): Fix type for variable "sofar".

lib-src/ChangeLog
lib-src/test-distrib.c

index a4b0ff37d072f439fd996312b1e1dc5732032008..e402fe44f94adf797c3b0d7dcf71450be272e365 100644 (file)
@@ -1,3 +1,9 @@
+2010-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * 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  <rgm@gnu.org>
 
        * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove easymenu.elc.
index 1487c2bab57f7f50204044b23d9bd9a97c5e649c..aca46f121faf991fcd123f836e0837cd06f14618 100644 (file)
@@ -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)
     {