From: Roland McGrath Date: Wed, 23 Aug 1995 17:42:20 +0000 (+0000) Subject: [HAVE_CONFIG_H]: Include config.h. X-Git-Tag: emacs-19.34~2925 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=33b78bd601f2c2676c578f3c5d3baa9aba1bab53;p=emacs.git [HAVE_CONFIG_H]: Include config.h. [! O_RDONLY]: Define it to zero. (main): Use O_RDONLY instead of explicit zero. --- diff --git a/lib-src/test-distrib.c b/lib-src/test-distrib.c index 33dc0a46ab4..dc5adb5789c 100644 --- a/lib-src/test-distrib.c +++ b/lib-src/test-distrib.c @@ -1,5 +1,14 @@ +#ifdef HAVE_CONFIG_H +#include +#endif + #include +#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. */ @@ -44,7 +53,7 @@ main (argc, argv) fprintf (stderr, "Usage: %s testfile\n", argv[0]); exit (2); } - fd = open (argv[1], 0); + fd = open (argv[1], O_RDONLY); if (fd < 0) { perror (argv[1]);