aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/fallback.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fallback.h')
-rw-r--r--src/fallback.h20
1 files changed, 2 insertions, 18 deletions
diff --git a/src/fallback.h b/src/fallback.h
index e3044449..f3252c14 100644
--- a/src/fallback.h
+++ b/src/fallback.h
@@ -158,29 +158,13 @@ int vswprintf(wchar_t *out, size_t n, const wchar_t *filter, va_list va);
#endif
#ifndef HAVE_FGETWC
-/**
- Fallback implementation of fgetwc
-*/
+// Fallback implementation of fgetwc.
wint_t fgetwc(FILE *stream);
-
-/**
- Fallback implementation of getwc
-*/
-wint_t getwc(FILE *stream);
-
#endif
#ifndef HAVE_FPUTWC
-
-/**
- Fallback implementation of fputwc
-*/
+// Fallback implementation of fputwc.
wint_t fputwc(wchar_t wc, FILE *stream);
-/**
- Fallback implementation of putwc
-*/
-wint_t putwc(wchar_t wc, FILE *stream);
-
#endif
#ifndef HAVE_WCSTOK