]> begriffs open source - libtap/blob - t/notediag.c
Ignore more junk
[libtap] / t / notediag.c
1 #include "tap.h"
2
3 int main () {
4     setvbuf(stdout, NULL, _IONBF, 0);
5     note("note no new line");    
6     note("note new line\n");
7     note("");
8     note(NULL);
9     diag("diag no new line");    
10     diag("diag new line\n");
11     diag("");
12     diag(NULL);
13     return 1;
14 }
15