aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2019-05-30 08:56:23 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2019-05-30 08:56:23 -0400
commit3d4645a8cd86d9d6eef6bfd1abd654461c47c4a6 (patch)
tree8a022a9686246f609370d7a81f304e113ed8a92f
parentmore fixes to be ported (diff)
downloadfirejail-3d4645a8cd86d9d6eef6bfd1abd654461c47c4a6.tar.gz
firejail-3d4645a8cd86d9d6eef6bfd1abd654461c47c4a6.tar.zst
firejail-3d4645a8cd86d9d6eef6bfd1abd654461c47c4a6.zip
add header guard to firecfg.h
-rw-r--r--src/firecfg/firecfg.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/firecfg/firecfg.h b/src/firecfg/firecfg.h
index 5f377bc25..e1c01462e 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,4 +50,4 @@ 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);
51 53#endif