diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-08-07 16:24:16 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-08-07 16:24:16 +0000 |
commit | 56a3e46bc09534a680cf5feeeb3abdc86cf4af3e (patch) | |
tree | cd17c632f0ff5e0b263138258aedf3fb8c375390 /rcfile_l.l | |
parent | 974600808906333590feb4ad879f89ec6ef6c10e (diff) | |
download | fetchmail-56a3e46bc09534a680cf5feeeb3abdc86cf4af3e.tar.gz fetchmail-56a3e46bc09534a680cf5feeeb3abdc86cf4af3e.tar.bz2 fetchmail-56a3e46bc09534a680cf5feeeb3abdc86cf4af3e.zip |
Portability fix for SGIs.
svn path=/trunk/; revision=1242
Diffstat (limited to 'rcfile_l.l')
-rw-r--r-- | rcfile_l.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,6 +5,7 @@ * * For license terms, see the file COPYING in this directory. */ +#include <string.h> #include "config.h" #include "fetchmail.h" @@ -119,7 +120,6 @@ remote(folder)? { [ \t\r]+ ; /* whitespace */ %% -#include <string.h> void escapes(cp, tp) /* process standard C-style escape sequences in a string */ |