correctly named include guard
This commit is contained in:
parent
98165ee6a9
commit
9cb53e8c92
2 changed files with 6 additions and 6 deletions
|
@ -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 */
|
||||
|
|
6
src/ui.h
6
src/ui.h
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue