diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2007-10-17 02:26:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:47 -0400 |
commit | 94f582f82a85a941678c80c60a3baa8187c74217 (patch) | |
tree | 83653a3a93b9291d658025a800d5fbed00ee484c /include/linux/compiler-gcc3.h | |
parent | a36a151e79be1562d6fea3ec4698f23e7102a26f (diff) |
Force erroneous inclusions of compiler-*.h files to be errors
Replace worthless comments with actual preprocessor errors when including
the wrong versions of the compiler.h files.
[akpm@linux-foundation.org: make it work]
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/compiler-gcc3.h')
-rw-r--r-- | include/linux/compiler-gcc3.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/compiler-gcc3.h b/include/linux/compiler-gcc3.h index a9e2863c2dbf..2d8c0f48f55e 100644 --- a/include/linux/compiler-gcc3.h +++ b/include/linux/compiler-gcc3.h | |||
@@ -1,4 +1,6 @@ | |||
1 | /* Never include this file directly. Include <linux/compiler.h> instead. */ | 1 | #ifndef __LINUX_COMPILER_H |
2 | #error "Please don't include <linux/compiler-gcc3.h> directly, include <linux/compiler.h> instead." | ||
3 | #endif | ||
2 | 4 | ||
3 | /* These definitions are for GCC v3.x. */ | 5 | /* These definitions are for GCC v3.x. */ |
4 | #include <linux/compiler-gcc.h> | 6 | #include <linux/compiler-gcc.h> |