diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-10-09 20:39:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-10-09 20:39:41 +0000 |
commit | d3077ff7af4bf39ad259d36b4f50302b15292233 (patch) | |
tree | cba3d18d4f883135019d712865ffa7a7b99a8378 /libc/sysdeps/linux | |
parent | e2d3f0355908600826507a846386eec9095682c4 (diff) |
Octal to hex
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/mips/bits/fcntl.h | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/sparc/bits/fcntl.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/mips/bits/fcntl.h b/libc/sysdeps/linux/mips/bits/fcntl.h index fe40bea63..1a2d40cd7 100644 --- a/libc/sysdeps/linux/mips/bits/fcntl.h +++ b/libc/sysdeps/linux/mips/bits/fcntl.h @@ -48,7 +48,7 @@ # define O_NOFOLLOW 0x20000 /* Do not follow links. */ # define O_DIRECT 0x8000 /* Direct disk access hint. */ # define O_DIRECTORY 0x10000 /* Must be a directory. */ -# define O_STREAMING 04000000/* streaming access */ +# define O_STREAMING 0x4000000/* streaming access */ #endif #define O_NDELAY O_NONBLOCK diff --git a/libc/sysdeps/linux/sparc/bits/fcntl.h b/libc/sysdeps/linux/sparc/bits/fcntl.h index 9e31c8552..12e9cffd2 100644 --- a/libc/sysdeps/linux/sparc/bits/fcntl.h +++ b/libc/sysdeps/linux/sparc/bits/fcntl.h @@ -43,7 +43,7 @@ #ifdef __USE_GNU # define O_DIRECTORY 0x10000 /* must be a directory */ # define O_NOFOLLOW 0x20000 /* don't follow links */ -# define O_STREAMING 04000000/* streaming access */ +# define O_STREAMING 0x4000000/* streaming access */ #endif #ifdef __USE_LARGEFILE64 |