aboutsummaryrefslogtreecommitdiff
path: root/src/cctest/namespace/cstdio-std:using-namespace-std.cc
blob: 0fbf9c6c3c665a6e5937df8c919f4f4d7eb942eb (plain)
1
2
3
4
5
6
7
8
9
10
11
// $Header$

#include <cstdio>
using namespace std;

int main()
{
printf("testing <cstdio> functions in std:: namespace:\n");
printf("==> #include <cstdio>; using namespace std; printf() is ok\n");
return 0;
}