summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-06-05 14:20:21 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-06-05 14:20:21 (GMT)
commit6989f80026498fa24134143b30adf8a909aba51d (patch)
tree01b41ada79d1d12d56206d3aca163fc5a0db21fb /Modules
parent937afc6b9b8246ae6eb4f80279ba1af140d50fdd (diff)
downloadCMake-6989f80026498fa24134143b30adf8a909aba51d.zip
CMake-6989f80026498fa24134143b30adf8a909aba51d.tar.gz
CMake-6989f80026498fa24134143b30adf8a909aba51d.tar.bz2
COMP: don't use stdio, it can fail on some embedded targets (sdcc)
Alex
Diffstat (limited to 'Modules')
-rw-r--r--Modules/CheckTypeSizeC.c.in3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/CheckTypeSizeC.c.in b/Modules/CheckTypeSizeC.c.in
index 11a0616..c25b69d 100644
--- a/Modules/CheckTypeSizeC.c.in
+++ b/Modules/CheckTypeSizeC.c.in
@@ -16,8 +16,6 @@
@CHECK_TYPE_SIZE_PREMAIN@
-#include <stdio.h>
-
#ifdef __CLASSIC_C__
# define const
#endif
@@ -39,7 +37,6 @@ int main(){
#else
int main(int ac, char*av[]){
#endif
- printf("sizeinfo: -%s-\n", info_sizeof);
return (&info_sizeof[0] != &info_sizeof[0]);
}