Add missing includes in compat implementation

These includes are necessary for the strdup() compat implementation.
master
Romain Vimont 4 years ago
parent dc0ac01e00
commit 6f487a2892

@ -2,6 +2,9 @@
#include "config.h"
#include <stdlib.h>
#include <string.h>
#ifndef HAVE_STRDUP
char *strdup(const char *s) {
size_t size = strlen(s) + 1;

Loading…
Cancel
Save