aboutsummaryrefslogtreecommitdiff
path: root/libtcc.c
diff options
context:
space:
mode:
authorseyko <seyko2@gmail.com>2015-11-08 11:42:56 +0300
committerseyko <seyko2@gmail.com>2015-11-08 11:42:56 +0300
commit763dd22b35f8c1e9409aa26a71dd141a42f48c50 (patch)
tree846970e9af5e74ad6ff7ff258a8dfb3703f611c2 /libtcc.c
parentec67dc482febec410400f96b7a0fa4280e29578d (diff)
downloadtinycc-763dd22b35f8c1e9409aa26a71dd141a42f48c50.tar.gz
tinycc-763dd22b35f8c1e9409aa26a71dd141a42f48c50.tar.bz2
fix tcc_mormalize_inc_dirs naming
Diffstat (limited to 'libtcc.c')
-rw-r--r--libtcc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtcc.c b/libtcc.c
index 4059637..c11cd53 100644
--- a/libtcc.c
+++ b/libtcc.c
@@ -1555,7 +1555,7 @@ int is_same_file(const file_info_t *fi1, const file_info_t *fi2)
#endif
}
-ST_FUNC void tcc_mormalize_inc_dirs(TCCState *s)
+ST_FUNC void tcc_normalize_inc_dirs(TCCState *s)
{
/* check a preprocessor include dirs and remove not
existing dirs and duplicates:
@@ -1697,7 +1697,7 @@ LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
}
#endif
- tcc_mormalize_inc_dirs(s);
+ tcc_normalize_inc_dirs(s);
if (s->output_type == TCC_OUTPUT_PREPROCESS)
print_defines();