diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-04-29 20:53:46 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-04-29 20:53:46 +0200 |
commit | c07136de8a76708a021911339f7fdde56e7c3789 (patch) | |
tree | e3f347028bf841a07b92c97cb27abe31446679fa /netrc.c | |
parent | a1e745c4da90c875ecbd433fcc81fe3bab2811e5 (diff) | |
download | fetchmail-c07136de8a76708a021911339f7fdde56e7c3789.tar.gz fetchmail-c07136de8a76708a021911339f7fdde56e7c3789.tar.bz2 fetchmail-c07136de8a76708a021911339f7fdde56e7c3789.zip |
#include "config.h" before string[s].h, to fix Solaris symbol exposure.
Diffstat (limited to 'netrc.c')
-rw-r--r-- | netrc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,12 +10,13 @@ (Makefile.am should have a rule so you can just type "make netrc") */ +#include "config.h" + #include <stdio.h> #include <ctype.h> #include <stdlib.h> #include <string.h> -#include "config.h" #include "fetchmail.h" #include "netrc.h" #include "i18n.h" |