diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-09 07:36:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-09 07:36:45 +0000 |
commit | 25288a6fccf1c2bf2114247f2e858ac22902f87f (patch) | |
tree | 39298b4549260eebfa2a43635e7f8641beb1a887 | |
parent | ab4e8fefc956416fd27a78c483d5e03288ed2c33 (diff) |
Make sure we have __linux__ defined
-rw-r--r-- | include/features.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/features.h b/include/features.h index f5fd52163..d00222125 100644 --- a/include/features.h +++ b/include/features.h @@ -430,5 +430,8 @@ uClibc was built without large file support enabled. #endif /* _LIBC only stuff */ +#ifndef __linux__ +# define __linux__ 1 +#endif #endif /* features.h */ |