diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-05-08 13:39:02 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-05-08 13:39:02 +0200 |
commit | 08ae0e4887d9aa2ff37e4fc4d56ca514c7f6bd85 (patch) | |
tree | 47bcb96159fe19cf7ab550a70ff4b30238f9cf03 /src/getopt.c | |
parent | b81ed3be87400dc4d882aa4ccdfb8cb23a79d236 (diff) |
getopt.c: Add missing string.h include (#530)
Diffstat (limited to 'src/getopt.c')
-rw-r--r-- | src/getopt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/getopt.c b/src/getopt.c index d212b3a..eaae3f7 100644 --- a/src/getopt.c +++ b/src/getopt.c @@ -36,6 +36,7 @@ #endif #include <stdio.h> +#include <string.h> /* Comment out all this code if we are using the GNU C Library, and are not actually compiling the library itself. This code is part of the GNU C |