diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-01 14:20:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-01 14:20:45 +0000 |
commit | b7bc129184a23d4c9c70774362f4eeaa5e0b44c8 (patch) | |
tree | f42053a86d7e4f8c156663b4c9c791deef7e2ef5 /ldso/ldso/syscall.h | |
parent | 22a9e5bbdf43e1086d80341480d0601ee9c6f898 (diff) |
Yet another major rework. This time around, rework it to no longer
use linux kernel header files.
-Erik
Diffstat (limited to 'ldso/ldso/syscall.h')
-rw-r--r-- | ldso/ldso/syscall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ldso/ldso/syscall.h b/ldso/ldso/syscall.h index 4e4d4c118..6678e2c74 100644 --- a/ldso/ldso/syscall.h +++ b/ldso/ldso/syscall.h @@ -41,6 +41,7 @@ static inline void * _dl_mmap(void * addr, unsigned long size, int prot, #define __NR__dl_open __NR_open +#define O_RDONLY 0x0000 static inline _syscall2(int, _dl_open, const char *, fn, int, flags); #define __NR__dl_write __NR_write @@ -66,6 +67,7 @@ static inline _syscall3(int, _dl_mprotect, const void *, addr, unsigned long, le #include <asm/stat.h> #undef new_stat #undef stat +#define S_ISUID 04000 /* Set user ID on execution. */ static inline _syscall2(int, _dl_stat, const char *, file_name, struct kernel_stat *, buf); |