Add missing header files to fix C99 compatibility.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1559 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
zwelch
2009-04-29 00:33:35 +00:00
parent 18b5a88a8a
commit 55c39bae67
4 changed files with 15 additions and 3 deletions

View File

@@ -35,9 +35,12 @@
#include "command.h"
#include "log.h"
#include "stdlib.h"
#include "string.h"
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
/* note that this is not marked as static as it must be available from outside jtag.c for those
that implement the jtag_xxx() minidriver layer