diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/_exports.h | 2 | ||||
| -rw-r--r-- | include/stdio.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/_exports.h b/include/_exports.h index 1e9ba861088..aeb666c8470 100644 --- a/include/_exports.h +++ b/include/_exports.h @@ -8,7 +8,7 @@ #define EXPORT_FUNC(a, b, c, ...) #endif EXPORT_FUNC(get_version, unsigned long, get_version, void) - EXPORT_FUNC(getc, int, getc, void) + EXPORT_FUNC(getchar, int, getc, void) EXPORT_FUNC(tstc, int, tstc, void) EXPORT_FUNC(putc, void, putc, const char) EXPORT_FUNC(puts, void, puts, const char *) diff --git a/include/stdio.h b/include/stdio.h index aedf3744525..039f7df6892 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -5,7 +5,7 @@ #include <linux/compiler.h> /* stdin */ -int getc(void); +int getchar(void); int tstc(void); /* stdout */ |
