diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-04-05 11:12:25 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-04-11 21:08:39 +0200 |
commit | 9eac2d92cf6cc5775147b045445f854172417f92 (patch) | |
tree | cf718e2e019130a258d5324846e4f219623a7822 /tests/libtest | |
parent | 86603d3995f06360baad0e05e4e7cecdb3ec4c29 (diff) |
lib509: add missing include for strdup
Closes https://github.com/curl/curl/pull/3739
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib509.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/libtest/lib509.c b/tests/libtest/lib509.c index 59ced355f..755208b8d 100644 --- a/tests/libtest/lib509.c +++ b/tests/libtest/lib509.c @@ -21,6 +21,8 @@ ***************************************************************************/ #include "test.h" +#include <string.h> + /* * This test uses these funny custom memory callbacks for the only purpose * of verifying that curl_global_init_mem() functionality is present in |