diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-03-20 23:34:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-20 23:34:56 +0100 |
commit | a88aca97633c2ec58987a76a5a8d910c37680e07 (patch) | |
tree | dee32d4bba166995bdb32d4cf8f1fcad8bcead4d /include/ucode/lib.h | |
parent | 807060a5d2d40113d9d78bf9e3866efb3de4c442 (diff) | |
parent | ab46fdfe742e754a8a56207ce1fc5653085696ad (diff) |
Merge pull request #52 from jow-/portability-fixes
Portability fixes for macOS
Diffstat (limited to 'include/ucode/lib.h')
-rw-r--r-- | include/ucode/lib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ucode/lib.h b/include/ucode/lib.h index 4b70635..095956a 100644 --- a/include/ucode/lib.h +++ b/include/ucode/lib.h @@ -14,8 +14,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#ifndef __LIB_H_ -#define __LIB_H_ +#ifndef UCODE_LIB_H +#define UCODE_LIB_H #include "vm.h" #include "lexer.h" @@ -103,4 +103,4 @@ _uc_function_list_register(uc_value_t *object, const uc_function_list_t *list, s #define uc_function_list_register(object, functions) \ _uc_function_list_register(object, functions, ARRAY_SIZE(functions)) -#endif /* __LIB_H_ */ +#endif /* UCODE_LIB_H */ |