diff options
author | Roland McGrath <roland@gnu.org> | 1995-08-23 17:42:20 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-08-23 17:42:20 +0000 |
commit | 7e140ba3b9fd0447b41a7c8561656e074b65a83d (patch) | |
tree | c3fc4a8881a9163675c029f30d42c5b6e39161a5 /lib-src/test-distrib.c | |
parent | a524ca0cdfd80381c4b892a24b6bc192002c784d (diff) | |
download | emacs-7e140ba3b9fd0447b41a7c8561656e074b65a83d.tar.gz |
[HAVE_CONFIG_H]: Include config.h.
[! O_RDONLY]: Define it to zero.
(main): Use O_RDONLY instead of explicit zero.
Diffstat (limited to 'lib-src/test-distrib.c')
-rw-r--r-- | lib-src/test-distrib.c | 11 |
1 files changed, 10 insertions, 1 deletions
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 <config.h> +#endif + #include <stdio.h> +#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]); |