aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-04-07 00:05:49 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-04-07 00:05:49 +0000
commite28b5c24dd820c6b31878e3aa88f3cc433bc443a (patch)
tree6115b89887c1bd7ba2cbec0f328f58afb9ede2a3
parent1dedd3505900c8ed08ed7b939af849738daf0a5b (diff)
downloadfetchmail-e28b5c24dd820c6b31878e3aa88f3cc433bc443a.tar.gz
fetchmail-e28b5c24dd820c6b31878e3aa88f3cc433bc443a.tar.bz2
fetchmail-e28b5c24dd820c6b31878e3aa88f3cc433bc443a.zip
Don't use inline.
svn path=/trunk/; revision=1735
-rw-r--r--unmime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unmime.c b/unmime.c
index e1690c27..5a9841c8 100644
--- a/unmime.c
+++ b/unmime.c
@@ -17,7 +17,7 @@
#include <ctype.h>
#include "fetchmail.h"
-static inline unsigned char unhex(unsigned char c)
+static unsigned char unhex(unsigned char c)
{
if ((c >= '0') && (c <= '9'))
return (c - '0');