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 /compat/ether.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/ether.h')
-rw-r--r-- | compat/ether.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/ether.h b/compat/ether.h index fc1525e..40f1c8c 100644 --- a/compat/ether.h +++ b/compat/ether.h @@ -19,8 +19,8 @@ 02110-1301 USA */ -#ifndef _COMPAT_ETHER_H -#define _COMPAT_ETHER_H 1 +#ifndef COMPAT__ETHER_H +#define COMPAT__ETHER_H 1 #include <sys/types.h> #include <sys/socket.h> @@ -45,5 +45,5 @@ char *ether_ntoa_r(const struct ether_addr *addr,char *buf); struct ether_addr *ether_aton_r(const char *asc,struct ether_addr *addr); #endif /* not HAVE_ETHER_ATON_R */ -#endif /* not _COMPAT_ETHER_H */ +#endif /* not COMPAT__ETHER_H */ |