X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fsetbuf.c;fp=functions%2Fstdio%2Fsetbuf.c;h=0000000000000000000000000000000000000000;hb=a1f747e81dad0bb9897cb11c652403bb7bbf084c;hp=163f1f550e749def67d7397bee05e6ece986c94c;hpb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;p=pdclib diff --git a/functions/stdio/setbuf.c b/functions/stdio/setbuf.c deleted file mode 100644 index 163f1f5..0000000 --- a/functions/stdio/setbuf.c +++ /dev/null @@ -1,24 +0,0 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ - -void setbuf( FILE * restrict stream, char * restrict buf ) { /* TODO */ }; - -/* PDPC code - unreviewed -{ - int ret; - - if (buf == NULL) - { - ret = setvbuf(stream, NULL, _IONBF, 0); - } - else - { - ret = setvbuf(stream, buf, _IOFBF, BUFSIZ); - } - return (ret); -} -*/