summaryrefslogtreecommitdiffstats
path: root/utf8.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-01-23 00:17:51 -0800
committerKaz Kylheku <kaz@kylheku.com>2022-01-23 00:17:51 -0800
commit9daf2efed7345dde3b007699156ee79bca5f8c97 (patch)
treea01781472addd6a18aee86109c603924477608c7 /utf8.c
parente5c930dadc76a19a76895e4db22552c83e7a87c2 (diff)
downloadtxr-9daf2efed7345dde3b007699156ee79bca5f8c97.tar.gz
txr-9daf2efed7345dde3b007699156ee79bca5f8c97.tar.bz2
txr-9daf2efed7345dde3b007699156ee79bca5f8c97.zip
Remove numerous unused global functions.
* eval.[ch] (lookup_global_var_l): Remove. * itypes.[ch] (c_schar): Likewise. * lib.[ch] (null_list, rcyc_list, gequal, func_n6v, func_n7v, func_n8v, do_pa_123_23, pa_123_23, orf, aconsql_new_c): Likewise. (obj_init): Remove references to null_list. * mpi/mpi-config.h (MP_FOR_TXR): New preprocessor symbol, defined as 1. * mpi/mpi.c (mp_get_prec, mp_set_prec, mp_init_array, mp_clear_array, mp_set_word, mp_exptmod_d, mp_cmp_d, mp_cmp_mag, mp_cmp_int, mp_lcm, mp_xgcd, mp_invmod, mp_char2value): Exclude using #if !MPI_FOR_TXR, rather than remove. We don't bother excluding the declarations in the header. * utf8.[ch] (w_freopen): Remove.
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);