trigger: reduce indentation level in trigger_event()
[project/procd.git] / jail / seccomp.h
index 6c585ad..6032812 100644 (file)
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  */
+#ifndef _JAIL_SECCOMP_H_
+#define _JAIL_SECCOMP_H_
+
+#include <stdio.h>
+#include <syslog.h>
 
 #define INFO(fmt, ...) do { \
-       syslog(0,"perload-jail: "fmt, ## __VA_ARGS__); \
-       fprintf(stderr,"perload-jail: "fmt, ## __VA_ARGS__); \
+       syslog(LOG_INFO,"preload-seccomp: "fmt, ## __VA_ARGS__); \
+       fprintf(stderr,"preload-seccomp: "fmt, ## __VA_ARGS__); \
        } while (0)
 
 int install_syscall_filter(const char *argv, const char *file);
+
+#endif