X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=blobdiff_plain;f=jail%2Flog.h;h=74a9f11f62b4218d002015603d00cb663a21a06b;hp=b1d201e8d1e052c127f9a6aca3869f5401af5b45;hb=1418c6ce8559ea125c525c2663105fa5ff14905e;hpb=bfd963313f155846b4f6269bbc76161f81e1e99f diff --git a/jail/log.h b/jail/log.h index b1d201e..74a9f11 100644 --- a/jail/log.h +++ b/jail/log.h @@ -10,8 +10,11 @@ * 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 #include #define INFO(fmt, ...) do { \ @@ -25,3 +28,4 @@ extern int debug; if (debug) printf("jail: "fmt, ## __VA_ARGS__); \ } while (0) +#endif