ソースを参照

bin2c: add missing stdtypes.h

z80asm
Virgil Dupras 4年前
コミット
e37f4c2551
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      tools/bin2c.c

+ 2
- 1
tools/bin2c.c ファイルの表示

@@ -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;


読み込み中…
キャンセル
保存