diff options
Diffstat (limited to 'modutils/modutils.c')
-rw-r--r-- | modutils/modutils.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/modutils/modutils.c b/modutils/modutils.c index cbff20961..862f71f57 100644 --- a/modutils/modutils.c +++ b/modutils/modutils.c | |||
@@ -69,15 +69,6 @@ void FAST_FUNC moddb_free(module_db *db) | |||
69 | } | 69 | } |
70 | } | 70 | } |
71 | 71 | ||
72 | void FAST_FUNC replace(char *s, char what, char with) | ||
73 | { | ||
74 | while (*s) { | ||
75 | if (what == *s) | ||
76 | *s = with; | ||
77 | ++s; | ||
78 | } | ||
79 | } | ||
80 | |||
81 | int FAST_FUNC string_to_llist(char *string, llist_t **llist, const char *delim) | 72 | int FAST_FUNC string_to_llist(char *string, llist_t **llist, const char *delim) |
82 | { | 73 | { |
83 | char *tok; | 74 | char *tok; |