bin2c: add missing stdtypes.h
This commit is contained in:
parent
217df20d77
commit
e37f4c2551
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
#define BUFSZ 32
|
#define BUFSZ 32
|
||||||
|
|
||||||
@ -25,7 +26,7 @@ int main(int argc, char **argv) {
|
|||||||
int n;
|
int n;
|
||||||
int col = 0;
|
int col = 0;
|
||||||
uint8_t buf[BUFSZ];
|
uint8_t buf[BUFSZ];
|
||||||
|
|
||||||
if (argc < 2) {
|
if (argc < 2) {
|
||||||
fprintf(stderr, "Specify a name for the data structure...\n");
|
fprintf(stderr, "Specify a name for the data structure...\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user