only include strings.h if it is actually preent

This commit is contained in:
Harald Welte 2010-03-26 23:51:31 +08:00
parent cc6313cc69
commit 01fd5cb3f0
1 changed files with 5 additions and 0 deletions

View File

@ -20,11 +20,16 @@
*
*/
#include "../config.h"
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include <time.h>
#include <errno.h>