Unify the include guards accross all header files

This commit is contained in:
Alexandre Paillier
2022-03-07 14:21:32 +01:00
parent 89070cd2be
commit c548aba364
27 changed files with 97 additions and 38 deletions

View File

@@ -1,4 +1,5 @@
#ifndef __ETH_PLUGIN_HANDLER_H__
#ifndef _ETH_PLUGIN_HANDLER_H_
#define _ETH_PLUGIN_HANDLER_H_
#include "eth_plugin_interface.h"
@@ -27,4 +28,4 @@ eth_plugin_result_t eth_plugin_call(int method, void *parameter);
void plugin_ui_start(void);
#endif
#endif // _ETH_PLUGIN_HANDLER_H_