diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-04-07 00:05:49 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-04-07 00:05:49 +0000 |
commit | e28b5c24dd820c6b31878e3aa88f3cc433bc443a (patch) | |
tree | 6115b89887c1bd7ba2cbec0f328f58afb9ede2a3 | |
parent | 1dedd3505900c8ed08ed7b939af849738daf0a5b (diff) | |
download | fetchmail-e28b5c24dd820c6b31878e3aa88f3cc433bc443a.tar.gz fetchmail-e28b5c24dd820c6b31878e3aa88f3cc433bc443a.tar.bz2 fetchmail-e28b5c24dd820c6b31878e3aa88f3cc433bc443a.zip |
Don't use inline.
svn path=/trunk/; revision=1735
-rw-r--r-- | unmime.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'); |