ujail: put #include guard macro in all *.h
authorEtienne CHAMPETIER <champetier.etienne@gmail.com>
Fri, 27 Nov 2015 16:27:04 +0000 (16:27 +0000)
committerJohn Crispin <blogic@openwrt.org>
Fri, 27 Nov 2015 16:48:49 +0000 (17:48 +0100)
Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
jail/capabilities.h
jail/elf.h
jail/log.h
jail/seccomp.h

index e6699e98ce2f0cd4aec3165954860245c79538b1..11b8cc27e9d54b0cbc0e89e34153a8e97c031ee4 100644 (file)
@@ -10,5 +10,9 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  */
+#ifndef _JAIL_CAPABILITIES_H_
+#define _JAIL_CAPABILITIES_H_
 
 int drop_capabilities(const char *file);
+
+#endif
index ddbe234a08787af6c0735f6d97639953991f2b06..570e4d0d1ebe23e68b80388463ca6fae52b9d0dc 100644 (file)
@@ -10,8 +10,9 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  */
+#ifndef _JAIL_ELF_H_
+#define _JAIL_ELF_H_
 
-#ifndef _ELF_H__
 #include <libubox/avl.h>
 #include <libubox/avl-cmp.h>
 
index b1d201e8d1e052c127f9a6aca3869f5401af5b45..56c98a0f7f7b663c85229ed1454154b4ac712cee 100644 (file)
@@ -10,6 +10,8 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  */
+#ifndef _JAIL_LOG_H_
+#define _JAIL_LOG_H_
 
 extern int debug;
 #include <syslog.h>
@@ -25,3 +27,4 @@ extern int debug;
        if (debug) printf("jail: "fmt, ## __VA_ARGS__); \
        } while (0)
 
+#endif
index 45eede7115539978705d7be710d8d4be9b1b1f69..0992b791723e7a192f04a5e09f3817f8dd72b113 100644 (file)
@@ -10,6 +10,8 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  */
+#ifndef _JAIL_SECCOMP_H_
+#define _JAIL_SECCOMP_H_
 
 #define INFO(fmt, ...) do { \
        syslog(LOG_INFO,"preload-seccomp: "fmt, ## __VA_ARGS__); \
@@ -17,3 +19,5 @@
        } while (0)
 
 int install_syscall_filter(const char *argv, const char *file);
+
+#endif