x86_64: ensure that dtor pointer passed to app is 0 so it won't be used
[musl] / src / stdio / getchar.c
1 #include <stdio.h>
2
3 int getchar(void)
4 {
5         return fgetc(stdin);
6 }