aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb33.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.robertl/eb33.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb33.C8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb33.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb33.C
index 3797ab3740f..9664f42e941 100644
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb33.C
+++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb33.C
@@ -1,11 +1,11 @@
-#include <fstream.h>
-#include <stdio.h>
+#include <fstream>
+#include <cstdio>
int
main()
{
- printf("If you see this, you don't have a problem!\n");
+ std::printf("If you see this, you don't have a problem!\n");
#ifdef EXPOSE_BUG
- ifstream a;
+ std::ifstream a;
#endif
}