aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2005-03-10 01:20:24 +0000
committerH. Peter Anvin <hpa@zytor.com>2005-03-10 01:20:24 +0000
commit173dee11a099c9982095ed8dce91d306888e0a05 (patch)
treec71ad0efac3e50a672b9043fdd59a8e6c7d73dad
parent5704d1429ada3f6fa247575629f5036b78a167f7 (diff)
downloadklibc-173dee11a099c9982095ed8dce91d306888e0a05.tar.gz
Barf instead of trying to fix things if __KLIBC__ not defined. It'sklibc-1.0.3
a serious error and needs to be caught.
-rw-r--r--include/stddef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stddef.h b/include/stddef.h
index 125d2352ec256..e96f28c446d7d 100644
--- a/include/stddef.h
+++ b/include/stddef.h
@@ -6,7 +6,7 @@
#define _STDDEF_H
#ifndef __KLIBC__
-# define __KLIBC__ 1
+# error "__KLIBC__ not defined, compiler invocation error!"
#endif
#include <bitsize/stddef.h>