diff options
author | rofl0r <retnyg@gmx.net> | 2013-08-16 06:27:52 +0200 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-08-16 18:25:28 -0400 |
commit | 0723130022d35b496b31f1a1a1cbef3df7e64c60 (patch) | |
tree | d3993b31aa5b37eefb40cc643c67d7eaac7a0199 /src | |
parent | c7b154161aa1fa7b256d164c4530bcdb26626866 (diff) |
libudev/log.c: using strlen without including string.h is no good idea
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/libudev/log.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libudev/log.c b/src/libudev/log.c index 1c1e538618..0fed5a0961 100644 --- a/src/libudev/log.c +++ b/src/libudev/log.c @@ -27,6 +27,7 @@ #include <sys/socket.h> #include <sys/un.h> #include <stddef.h> +#include <string.h> #include "log.h" #include "util.h" |