bin2c: add missing stdtypes.h

This commit is contained in:
Virgil Dupras 2020-04-07 18:13:42 -04:00
parent 217df20d77
commit e37f4c2551
1 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#define BUFSZ 32
@ -25,7 +26,7 @@ int main(int argc, char **argv) {
int n;
int col = 0;
uint8_t buf[BUFSZ];
if (argc < 2) {
fprintf(stderr, "Specify a name for the data structure...\n");
return 1;