Browse Source

bin2c: add missing stdtypes.h

z80asm
Virgil Dupras 4 years ago
parent
commit
e37f4c2551
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      tools/bin2c.c

+ 2
- 1
tools/bin2c.c 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;


Loading…
Cancel
Save