diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2019-06-22 17:26:07 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2019-08-05 13:08:43 +0200 |
commit | 53f7f27693dc5b3ac606a1ca3a7225467e15e162 (patch) | |
tree | 8238000425697e90886e21fb92694954266d824a /uid_db.c | |
parent | fea8e876fcb668abd2f0f56f285327846fabdbde (diff) | |
download | fetchmail-53f7f27693dc5b3ac606a1ca3a7225467e15e162.tar.gz fetchmail-53f7f27693dc5b3ac606a1ca3a7225467e15e162.tar.bz2 fetchmail-53f7f27693dc5b3ac606a1ca3a7225467e15e162.zip |
FreeBSD cleanups to header shuffling.
Diffstat (limited to 'uid_db.c')
-rw-r--r-- | uid_db.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -8,9 +8,7 @@ 6.3.17 release, including the OpenSSL exemption. */ -/* Have Solaris expose ffs() from strings.h: */ -#define __EXTENSIONS__ -#define _XOPEN_SOURCE 700 +#include "fetchmail.h" /* includes */ #include <stdio.h> @@ -18,9 +16,10 @@ #include <string.h> #include <strings.h> /* ffs() lives here - needs #define on Solaris. */ -#include "xmalloc.h" #include "uid_db.h" +#include "xmalloc.h" + /* constants */ enum { MIN_RECORDS = 16 /* arbitrary */ |