From 86c194bf69bb83b59485238c0098c324d168b7e9 Mon Sep 17 00:00:00 2001 From: Jacob Hageman Date: Thu, 3 Feb 2022 16:18:07 -0700 Subject: [PATCH] Fix #204, Apply header guard standard --- Subsystems/cmdUtil/SendUdp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Subsystems/cmdUtil/SendUdp.h b/Subsystems/cmdUtil/SendUdp.h index 5efd47f..a51b214 100644 --- a/Subsystems/cmdUtil/SendUdp.h +++ b/Subsystems/cmdUtil/SendUdp.h @@ -17,9 +17,9 @@ ** See the License for the specific language governing permissions and ** limitations under the License. */ -#ifndef _sendudp_ -#define _sendudp_ +#ifndef SENDUDP_H +#define SENDUDP_H int SendUdp(char *hostname, char *portNum, unsigned char *packetData, int packetSize); -#endif /* _sendudp_ */ +#endif