ref: 831becab55913062b3a314c34cec38fa511bb21b
parent: 506996ff232e60e27138297823a4e8ce01668548
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Mon Oct 15 05:00:37 EDT 2018
[lib/c] Remove unused variable in setvbuf
--- a/lib/c/setvbuf.c
+++ b/lib/c/setvbuf.c
@@ -8,7 +8,7 @@
int
setvbuf(FILE * restrict fp, char * restrict buf, int mode, size_t size)
{
- int flags, r;
+ int flags;
if (_flsbuf(fp) == EOF)
return EOF;