correctly named include guard

This commit is contained in:
Gwenhael Le Moine 2024-04-09 19:50:40 +02:00
parent 98165ee6a9
commit 9cb53e8c92
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
2 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
#ifndef _HP48_H
#define _HP48_H 1
#ifndef _EMULATOR_H
#define _EMULATOR_H 1
#include <stdint.h> /* int64_t */
#include <stdbool.h>
@ -366,4 +366,4 @@ extern int step_instruction( void );
extern void schedule( void );
extern void load_addr( word_20* dat, long addr, int n );
#endif /* !_HP48_H */
#endif /* !_EMULATOR_H */

View file

@ -1,5 +1,5 @@
#ifndef _X48_GUI_H
#define _X48_GUI_H 1
#ifndef _UI_H
#define _UI_H 1
#include "emulator.h" /* word_4; word_20; */
@ -73,4 +73,4 @@ extern void ( *init_ui )( int argc, char** argv );
extern void ui_init_LCD( void );
extern void setup_frontend( void );
#endif /* !_X48_GUI_H */
#endif /* !_UI_H */