From c6a8dcf1409260e7ddf804d2c69c6097d4c4d117 Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Mon, 27 Dec 2021 20:16:00 +0100 Subject: [PATCH] util: Use pragma once instead of include guard --- src/util.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/util.h b/src/util.h index efc791e..d225645 100644 --- a/src/util.h +++ b/src/util.h @@ -22,8 +22,7 @@ * */ -#ifndef CALLS__UTIL_H__ -#define CALLS__UTIL_H__ +#pragma once #include @@ -147,4 +146,3 @@ const char *get_call_icon_symbolic_name (gboolean inbound, G_END_DECLS -#endif /* CALLS__UTIL_H__ */