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

4
io.h
View File

@@ -1,5 +1,4 @@
#ifndef IO_HEADER
#define IO_HEADER
#pragma once
#include <stdbool.h>
#ifndef IO_API
@@ -72,4 +71,3 @@ IO_API void IO_OutputMessage(char *str, int len);
IO_API IO_ErrorResult IO_OutputError(char *str, int len);
IO_API void IO_Exit(int error_code);
IO_API bool IO_IsDebuggerPresent(void);
#endif