Merge "Add missing <string.h> includes."

This commit is contained in:
Elliott Hughes 2015-01-25 05:06:51 +00:00 committed by Gerrit Code Review
commit ae79cb5a81
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>