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

#include <cstdio>

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