diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-08-28 19:42:52 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-08-28 19:42:52 +0200 |
commit | 8da7ca8374db172c8a2400c7e3d8fe3cb6b967b6 (patch) | |
tree | cb0aa21b6fcc570fe128d95c0fbb8f19a58bffe9 /src/log.h | |
parent | don't use the latest glibc features (diff) | |
download | cimple-8da7ca8374db172c8a2400c7e3d8fe3cb6b967b6.tar.gz cimple-8da7ca8374db172c8a2400c7e3d8fe3cb6b967b6.zip |
fix Alpine builds
Diffstat (limited to '')
-rw-r--r-- | src/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,9 +2,9 @@ #define __LOG_H__ #include <errno.h> +#include <libgen.h> #include <netdb.h> #include <stdio.h> -#include <string.h> #define CONCAT_INNER(a, b) a##b #define CONCAT(a, b) CONCAT_INNER(a, b) |