Windows build seems to need <stdint.h> in spinsim.c and eeprom.c.

This commit is contained in:
David Betz 2015-12-22 09:49:27 -05:00
parent 36e60b13ab
commit 66915a7ad1
2 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include "spinsim.h"
extern int32_t pin_val;

View File

@ -6,6 +6,7 @@
'******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>