select: fix 64-bit timeout truncation on pre-time64 kernels
[musl] / src / stdio / getchar.c
index c101265..df395ca 100644 (file)
@@ -1,6 +1,7 @@
 #include <stdio.h>
+#include "getc.h"
 
 int getchar(void)
 {
-       return fgetc(stdin);
+       return do_getc(stdin);
 }