0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2025-01-07 08:01:17 +00:00

Add header guard to uxn.h

This commit is contained in:
Bad Diode 2022-03-05 22:56:30 +01:00 committed by neauoire
parent b482b5f93e
commit 11c9ec8b49

View file

@ -1,3 +1,6 @@
#ifndef UXN_UXN_H
#define UXN_UXN_H
/*
Copyright (c) 2021 Devine Lu Linvega
@ -46,3 +49,4 @@ int uxn_boot(Uxn *u, Uint8 *ram);
int uxn_eval(Uxn *u, Uint16 pc);
int uxn_halt(Uxn *u, Uint8 error, Uint16 addr);
Device *uxn_port(Uxn *u, Uint8 id, Uint8 (*deifn)(Device *, Uint8), void (*deofn)(Device *, Uint8));
#endif // UXN_UXN_H