summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar smitsohu <smitsohu@gmail.com>2019-05-24 02:46:57 +0200
committerLibravatar GitHub <noreply@github.com>2019-05-24 02:46:57 +0200
commite9830e9fc994cb2da823c8b88a6bf4cc8e9ddcb8 (patch)
tree59812346666c8eabf43aef912a856f1abd19490f
parentHarden gnome-chess (#2719) (diff)
downloadfirejail-e9830e9fc994cb2da823c8b88a6bf4cc8e9ddcb8.tar.gz
firejail-e9830e9fc994cb2da823c8b88a6bf4cc8e9ddcb8.tar.zst
firejail-e9830e9fc994cb2da823c8b88a6bf4cc8e9ddcb8.zip
add header guard to firecfg.h
-rw-r--r--src/firecfg/firecfg.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/firecfg/firecfg.h b/src/firecfg/firecfg.h
index e847719cf..71e5d625d 100644
--- a/src/firecfg/firecfg.h
+++ b/src/firecfg/firecfg.h
@@ -17,6 +17,8 @@
17 * with this program; if not, write to the Free Software Foundation, Inc., 17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19*/ 19*/
20#ifndef FIRECFG_H
21#define FIRECFG_H
20#define _GNU_SOURCE 22#define _GNU_SOURCE
21#include <stdio.h> 23#include <stdio.h>
22#include <sys/types.h> 24#include <sys/types.h>
@@ -48,3 +50,5 @@ void sound(void);
48 50
49// desktop_files.c 51// desktop_files.c
50void fix_desktop_files(char *homedir); 52void fix_desktop_files(char *homedir);
53
54#endif