]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove O_RDONLY, O_WRONLY definitions, not needed.
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 4 Oct 2010 17:22:57 +0000 (10:22 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 4 Oct 2010 17:22:57 +0000 (10:22 -0700)
* src/unexcoff.c:
* src/lread.c:
* src/fileio.c:
* src/doc.c:
* src/callproc.c:
* src/alloc.c:
* src/termcap.c: Remove O_RDONLY O_WRONLY definitions.

src/ChangeLog
src/alloc.c
src/callproc.c
src/doc.c
src/fileio.c
src/lread.c
src/termcap.c
src/unexcoff.c

index 960602a6d085c0713cdd6dde5bbfdbc124cb38d6..7c907dd45efc1610c20941169bf8632cd1b0c103 100644 (file)
@@ -1,3 +1,14 @@
+2010-10-04  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       Remove O_RDONLY, O_WRONLY definitions, not needed.
+       * unexcoff.c:
+       * lread.c:
+       * fileio.c:
+       * doc.c:
+       * callproc.c:
+       * alloc.c:
+       * termcap.c: Remove O_RDONLY O_WRONLY definitions.
+
 2010-10-03  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * gnutls.h (GNUTLS_LOG2): Convenience macro.
index 0ab4f9f8f8532be000e8113668ef7a262d901227..fa39c1ee5dcba16d3777bb6cf4ef953ac5ecae11 100644 (file)
@@ -66,9 +66,6 @@ extern POINTER_TYPE *sbrk ();
 #endif
 
 #include <fcntl.h>
-#ifndef O_WRONLY
-#define O_WRONLY 1
-#endif
 
 #ifdef WINDOWSNT
 #include "w32.h"
index ee587605f7a1db1b4965baf4ab1a8b0c45cc03ae..29e13bbc4a776c8b6ef3ada2b242b9b1738377f5 100644 (file)
@@ -45,14 +45,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <sys/param.h>
 #endif /* MSDOS */
 
-#ifndef O_RDONLY
-#define O_RDONLY 0
-#endif
-
-#ifndef O_WRONLY
-#define O_WRONLY 1
-#endif
-
 #include "lisp.h"
 #include "commands.h"
 #include "buffer.h"
index 0e9714b4512b0e1f038ff328123ea44cc4cf4a90..7caa88a7b5e71567baa1c3f467601395a6fb5605 100644 (file)
--- a/src/doc.c
+++ b/src/doc.c
@@ -31,10 +31,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <unistd.h>
 #endif
 
-#ifndef O_RDONLY
-#define O_RDONLY 0
-#endif
-
 #include "lisp.h"
 #include "buffer.h"
 #include "keyboard.h"
index a2daf7f15c9da2af423ab26cff47da843274532a..36b6cc3ca8bb6af7c30ba5d17fb3eac6bbb9ba11 100644 (file)
@@ -100,14 +100,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include "commands.h"
 
-#ifndef O_WRONLY
-#define O_WRONLY 1
-#endif
-
-#ifndef O_RDONLY
-#define O_RDONLY 0
-#endif
-
 #ifndef S_ISLNK
 #  define lstat stat
 #endif
index 69e9a4629d219600bf3543d04d92ae5ac5d09c1f..66b1a8068c2e98f3402c9eab73eed9e7e1c62713 100644 (file)
@@ -55,9 +55,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #endif /* HAVE_SETLOCALE */
 
 #include <fcntl.h>
-#ifndef O_RDONLY
-#define O_RDONLY 0
-#endif
 
 #ifdef HAVE_FSEEKO
 #define file_offset off_t
index a8eabf25529771152cb0aedf478aabdcbbb8067b..03476b15761f944af637e9a7f6e4dab4f27b8bc1 100644 (file)
@@ -20,22 +20,18 @@ Boston, MA 02110-1301, USA.  */
 /* Emacs config.h may rename various library functions such as malloc.  */
 #include <config.h>
 #include <setjmp.h>
-#include <lisp.h>              /* xmalloc is here */
-/* Get the O_* definitions for open et al.  */
 #include <sys/file.h>
 #include <fcntl.h>
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
 
+#include "lisp.h"
+
 #ifndef NULL
 #define NULL (char *) 0
 #endif
 
-#ifndef O_RDONLY
-#define O_RDONLY 0
-#endif
-
 /* BUFSIZE is the initial size allocated for the buffer
    for reading the termcap file.
    It is not a limit.
index 428382e4a3def9b7768111230095d84702410113..0c6af414d820531dff2c93f82814c07563d5044f 100644 (file)
@@ -97,14 +97,6 @@ struct aouthdr
 
 #include <sys/file.h>
 
-#ifndef O_RDONLY
-#define O_RDONLY 0
-#endif
-#ifndef O_RDWR
-#define O_RDWR 2
-#endif
-
-
 extern char *start_of_data (void);             /* Start of initialized data */
 
 static long block_copy_start;          /* Old executable start point */