summaryrefslogtreecommitdiff
path: root/src/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.c')
-rw-r--r--src/string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string.c b/src/string.c
index 9270917..95abc2e 100644
--- a/src/string.c
+++ b/src/string.c
@@ -13,7 +13,7 @@
/* Simple function to hash a string to an unsigned int.
*/
-inline unsigned int
+unsigned int
strhash(const char *line)
{
unsigned int r = 0;
@@ -30,7 +30,7 @@ strhash(const char *line)
/* This function removes all occurences of the character 'c' from the
string 's'.
*/
-inline void
+void
strstripchr(char *s, int c)
{
register char *t;