Add missing <string.h> includes.

Change-Id: I3d1ad54418f69f947e2d829d63b53d44581bfd86
This commit is contained in:
Elliott Hughes 2015-01-24 20:03:09 -08:00
parent d098493293
commit 2b7d75d2e6
3 changed files with 4 additions and 1 deletions

View file

@ -22,6 +22,7 @@
#include <netutils/ifc.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void die(const char *reason)
{

View file

@ -1,6 +1,7 @@
#include "dynarray.h"
#include <stdlib.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
void
dynarray_init( dynarray_t *a )

View file

@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <errno.h>