1*c9945492SAndroid Build Coastguard Worker #include <stdio.h> 2*c9945492SAndroid Build Coastguard Worker setbuf(FILE * restrict f,char * restrict buf)3*c9945492SAndroid Build Coastguard Workervoid setbuf(FILE *restrict f, char *restrict buf) 4*c9945492SAndroid Build Coastguard Worker { 5*c9945492SAndroid Build Coastguard Worker setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ); 6*c9945492SAndroid Build Coastguard Worker } 7