#include int main() { char c; printf("-- read from stderr byte by byte --\n"); while(_poll(2)){ fread(&c,1,1,stderr); printf("%c",c); } printf("\n-- no more data on stderr --\n"); return 0; }