aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2010-12-01 18:16:41 +0000
committerStephen Fisher <steve@stephen-fisher.com>2010-12-01 18:16:41 +0000
commitefc64e43f677ec503c318eb221b8f03e3198b924 (patch)
treefe6b7026f98e8d11e129b7b0636ebe606e16a0cd
parent100e4ae0252d2f329cdc73f20942fcf18dbc6344 (diff)
Add #ifndef __PRIVILEGES_H__ / #define / #endif logic to prevent multiple
inclusions of privileges.h. svn path=/trunk/; revision=35092
-rw-r--r--wsutil/privileges.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/wsutil/privileges.h b/wsutil/privileges.h
index 7526a8ce75..9bb1430c94 100644
--- a/wsutil/privileges.h
+++ b/wsutil/privileges.h
@@ -22,6 +22,9 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#ifndef __PRIVILEGES_H__
+#define __PRIVILEGES_H__
+
/**
* Called when the program starts, to enable security features and save
* whatever credential information we'll need later.
@@ -72,3 +75,5 @@ extern gchar *get_cur_groupname(void);
*/
extern gboolean npf_sys_is_running();
#endif
+
+#endif /* __PRIVILEGES_H__ */