diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-06-14 21:05:52 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-06-14 21:05:52 +0000 |
commit | 2c40043c434b883a0bfce7d777a028ae0da6d25f (patch) | |
tree | 143984773c7b27a733de37a86ca4b5e4c7579ccb /common/expr.h | |
parent | a24c04ae85579ffa8d7837b46ce2bb22e779a098 (diff) |
make include guard names consistent throughout the source and avoid conflicts with system headers
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1140 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'common/expr.h')
-rw-r--r-- | common/expr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/expr.h b/common/expr.h index 9861a49..81b0e27 100644 --- a/common/expr.h +++ b/common/expr.h @@ -20,8 +20,8 @@ 02110-1301 USA */ -#ifndef _EXPR_H -#define _EXPR_H 1 +#ifndef COMMON__EXPR_H +#define COMMON__EXPR_H 1 #include "compat/attrs.h" #include "common/set.h" @@ -38,4 +38,4 @@ MUST_USE const char *expr_parse(const char *expr,char *buffer,size_t buflen, is allocated, otherwise the passed set is added to. */ SET *expr_vars(const char *expr,SET *set); -#endif /* not _EXPR_H */ +#endif /* not _COMMON__ */ |