diff options
author | Omar Polo <op@omarpolo.com> | 2021-02-12 12:49:36 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-02-12 12:49:36 +0000 |
commit | 76898714462223ec4dd8f3049cf07f2bea00cb1d (patch) | |
tree | 7b272fa59679db46b75b9931e5660d5924a72f7c /compat/strlcat.c | |
parent | 52418c8d828bc25e0e84cc25d5e349a84be0b397 (diff) |
include config.h first
Diffstat (limited to 'compat/strlcat.c')
-rw-r--r-- | compat/strlcat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/strlcat.c b/compat/strlcat.c index b4e969e..6843ca8 100644 --- a/compat/strlcat.c +++ b/compat/strlcat.c @@ -14,11 +14,11 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "../config.h" + #include <sys/types.h> #include <string.h> -#include "../config.h" - /* * Appends src to string dst of size dsize (unlike strncat, dsize is the * full size of dst, not space left). At most dsize-1 characters |