mq_notify: rework to fix use-after-close/double-close bugs
[musl] / src / stdio / fgetc.c
1 #include <stdio.h>
2 #include "getc.h"
3
4 int fgetc(FILE *f)
5 {
6         return do_getc(f);
7 }