diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-01-02 11:59:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-01-02 11:59:28 +0000 |
commit | 7b6c8a1adcc37cf02e6fcc90e342e05f99f6b89a (patch) | |
tree | 5b8180bc7ab60e729df8f0550e07f6e5ae58327f /include | |
parent | c2e3235c998fb528b6485e0329624c75a92cb9a5 (diff) |
Cope with 2.6.x headers
Diffstat (limited to 'include')
-rw-r--r-- | include/features.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/features.h b/include/features.h index f13a76f19..bd97d38f9 100644 --- a/include/features.h +++ b/include/features.h @@ -446,4 +446,8 @@ uClibc was built without large file support enabled. # define __linux__ 1 #endif +/* Disable __user, which shows up in 2.6.x include asm headers + * that get pulled in by signal.h */ +#define __user + #endif /* features.h */ |