From d2ba14fd85fe83402672b5ed057b13fa7cb5545b Mon Sep 17 00:00:00 2001 From: Brian McGillion Date: Thu, 15 Dec 2011 11:45:51 +0200 Subject: [PATCH] Improve the include guard to avoid conflicts with applications --- libsmack/sys/smack.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libsmack/sys/smack.h b/libsmack/sys/smack.h index 797cccd..1549ba0 100644 --- a/libsmack/sys/smack.h +++ b/libsmack/sys/smack.h @@ -26,8 +26,8 @@ * Smack user space library */ -#ifndef SMACK_H -#define SMACK_H +#ifndef _SYS_SMACK_H +#define _SYS_SMACK_H #include @@ -136,4 +136,4 @@ int smack_new_label_from_socket(int fd, char **label); } #endif -#endif // SMACK_H +#endif // _SYS_SMACK_H -- 2.7.4