mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-04-12 18:40:23 +08:00
Must define types before using them
This commit is contained in:
parent
4db5a16128
commit
b263b504bc
@ -6,6 +6,7 @@
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
extern int lrotate(int32_t, int);
|
||||
extern void greet(void);
|
||||
|
@ -7,6 +7,7 @@
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
extern int lrotate(int32_t, int);
|
||||
extern void greet(void);
|
||||
|
@ -8,6 +8,7 @@
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
int8_t text[] = "hello, world\n";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user