diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-07 09:26:46 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-07 09:29:45 -0400 |
| commit | 3711fdb77c08f02156f4ee29d9bbd9790175faf4 (patch) | |
| tree | 9b1012f1f609f3a9acf33a6ad77ea3a9b491f4c8 | |
| parent | 9a8a7b0ed1e9f464ab26b6271940eb802b6c77f5 (diff) | |
lib: Include proper header
bcopy is being used in the new printf code. Let's actually
include the proper header for it.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
| -rw-r--r-- | lib/printf/printf-pos.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/printf/printf-pos.c b/lib/printf/printf-pos.c index 399573e6c1..1f5f283e82 100644 --- a/lib/printf/printf-pos.c +++ b/lib/printf/printf-pos.c @@ -54,6 +54,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #include <wchar.h> #include "printflocal.h" |
