Replace guards with pragma once

This commit is contained in:
Krzosa Karol
2023-12-31 10:30:34 +01:00
parent 1569f94374
commit 4ef1cb7250
14 changed files with 25 additions and 56 deletions

View File

@@ -1,6 +1,4 @@
#ifndef LIB_LOAD_HEADER
#define LIB_LOAD_HEADER
#pragma once
typedef void *LIB_Library;
LIB_Library LIB_LoadLibrary(char *str);
@@ -10,5 +8,3 @@ bool LIB_UnloadLibrary(LIB_Library lib);
#ifndef LIB_EXPORT
#define LIB_EXPORT __declspec(dllexport)
#endif
#endif