diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-06-14 23:05:52 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-06-14 23:05:52 +0200 |
commit | 2c40043c434b883a0bfce7d777a028ae0da6d25f (patch) | |
tree | 143984773c7b27a733de37a86ca4b5e4c7579ccb /compat/attrs.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 'compat/attrs.h')
-rw-r--r-- | compat/attrs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/attrs.h b/compat/attrs.h index 492f45c..0bc0f30 100644 --- a/compat/attrs.h +++ b/compat/attrs.h @@ -19,8 +19,8 @@ 02110-1301 USA */ -#ifndef _COMPAT_ATTRS_H -#define _COMPAT_ATTRS_H 1 +#ifndef COMPAT__ATTRS_H +#define COMPAT__ATTRS_H 1 /* macro for testing the version of GCC */ #define GCC_VERSION(major,minor) \ @@ -88,4 +88,4 @@ #endif /* not __STDC__ */ #endif /* not __STRING */ -#endif /* not _COMPAT_ATTRS_H */ +#endif /* not COMPAT__ATTRS_H */ |