diff options
author | Harald Welte <laforge@gnumonks.org> | 2014-03-10 18:12:17 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2014-11-14 15:21:18 +0100 |
commit | b592ab71a7e3d49d62ea986401f0902953375057 (patch) | |
tree | 5a787ede4dbc1580a0e2b34aa1e582072f40de65 /src | |
parent | 9e166e8e0815a5b429738614025fc2beb96473d4 (diff) |
strrb.c: Use string.h, not strings.h
Not all systems have strings.h
Diffstat (limited to 'src')
-rw-r--r-- | src/strrb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strrb.c b/src/strrb.c index 972d1300..8f925bd3 100644 --- a/src/strrb.c +++ b/src/strrb.c @@ -27,7 +27,7 @@ #include <stdio.h> #include <string.h> -#include <strings.h> +#include <string.h> #include <osmocom/core/strrb.h> |