summaryrefslogtreecommitdiffstats
path: root/utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/utf8.c b/utf8.c
index 8d615405..e1e696fc 100644
--- a/utf8.c
+++ b/utf8.c
@@ -387,16 +387,6 @@ FILE *w_popen(const wchar_t *wcmd, const wchar_t *wmode)
}
#endif
-FILE *w_freopen(const wchar_t *wname, const wchar_t *wmode, FILE *fold)
-{
- char *name = utf8_dup_to(wname);
- char *mode = utf8_dup_to(wmode);
- FILE *f = fold ? freopen(name, mode, fold) : fopen(name, mode);
- free(name);
- free(mode);
- return f;
-}
-
FILE *w_fdopen(int fd, const wchar_t *wmode)
{
char *mode = utf8_dup_to(wmode);