diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2024-01-05 09:50:16 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2024-01-09 12:50:40 -0500 | 
| commit | 7c1a8f7a9e1c1253d052d74f5f6cb7f7a067b7d9 (patch) | |
| tree | 66ab4d9c3d9609c4f2880759600739a951b46162 /lib | |
| parent | 68eca30c58edf0ff13c4456e37074975a27a4b11 (diff) | |
lib: string.h was only used by vector.c make it better
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/vector.c | 1 | ||||
| -rw-r--r-- | lib/zebra.h | 1 | 
2 files changed, 1 insertions, 1 deletions
diff --git a/lib/vector.c b/lib/vector.c index bbea67c12f..60d383101a 100644 --- a/lib/vector.c +++ b/lib/vector.c @@ -4,6 +4,7 @@   */  #include <zebra.h> +#include <string.h>  #include "vector.h"  #include "memory.h" diff --git a/lib/zebra.h b/lib/zebra.h index 9907c6dde9..0a2f548741 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -18,7 +18,6 @@  #include <stddef.h>  #include <ctype.h>  #include <errno.h> -#include <string.h>  #ifdef HAVE_STROPTS_H  #include <stropts.h>  #endif /* HAVE_STROPTS_H */  | 
