X-Git-Url: https://ruderich.org/simon/gitweb/?p=coloredstderr%2Fcoloredstderr.git;a=blobdiff_plain;f=tests%2Fexample.c;h=0fee9733f100a28dba8f0226a8aada01059acef4;hp=7f7d2ad99e4e88114968ceb6eb5aa6312ca13e31;hb=7adfbfd2cf1d46144c41a75aa501938607a316b5;hpb=d8be625da928025e96417c1b62f3336251204cef diff --git a/tests/example.c b/tests/example.c index 7f7d2ad..0fee973 100644 --- a/tests/example.c +++ b/tests/example.c @@ -52,5 +52,9 @@ int main(int argc, char **argv unused) { write(42, "stderr ...\n", 11); write(471, "more on stdout\n", 15); + /* Glibc uses __overflow() for this ... */ + putc_unlocked('x', stderr); + putc_unlocked('\n', stdout); + return EXIT_SUCCESS; }