aboutsummaryrefslogtreecommitdiff
path: root/src/cctest/test-stdio_h-std.cc
blob: 32f539bf9f11eb9d9923982749a285a881b4f8a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// test-cstdio-std.cc -- test <cstdio> functions in std:: namespace
// $Header$

#include <cstdio>
using std::printf;

int main()
{
printf("==> <cstdio> fns in the std:: namespace are ok\n");
return 0;
}