diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-22 20:12:31 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-24 23:03:49 +0200 |
commit | 84ac7bea360cd369df26910e9685a7eed2327088 (patch) | |
tree | 7b941067ff1af844404ad7c433473b1d5090c1ec /src/basic/strv.h | |
parent | 0f03c2a4c093e3d44f4072144827e943c05c8904 (diff) |
util: split out extract_first_word() and related calls into extract-word.[ch]
This is quite a lot of code these days, hence move it to its own source
file.
Diffstat (limited to 'src/basic/strv.h')
-rw-r--r-- | src/basic/strv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/basic/strv.h b/src/basic/strv.h index a5dc696a87..e66794fc34 100644 --- a/src/basic/strv.h +++ b/src/basic/strv.h @@ -21,10 +21,11 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include <fnmatch.h> #include <stdarg.h> #include <stdbool.h> -#include <fnmatch.h> +#include "extract-word.h" #include "util.h" char *strv_find(char **l, const char *name) _pure_; |