Merged revisions 1582-1665 via svnmerge from
[scons.git] / test / Repository / include.py
index 577442a2ae2a0447ed4541d43cfddf16a6be8b34..4575d994d83a7a341884e23ccd109c4f02c20b5e 100644 (file)
@@ -56,6 +56,8 @@ test.write(['repository', 'bar.h'], r"""
 """)
 
 test.write(['repository', 'foo.c'], r"""
+#include <stdio.h>
+#include <stdlib.h>
 #include <foo.h>
 int
 main(int argc, char *argv[])
@@ -100,6 +102,8 @@ test.up_to_date(chdir = 'work', arguments = '.')
 
 #
 test.write(['work', 'foo.c'], r"""
+#include <stdio.h>
+#include <stdlib.h>
 #include <foo.h>
 int
 main(int argc, char *argv[])