diff options
author | Ivy Foster <ivy.foster@gmail.com> | 2016-09-04 05:14:49 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2016-09-25 10:04:57 +0200 |
commit | 0d2ba870c96d1b4b3d5fabfabe303bc6b1c989fd (patch) | |
tree | 5570f95d12b1c5ebe6108179ae87097e52beee51 /lib/libalpm/alpm_list.h | |
parent | ae56a32273df8a36f4e84e0f37ce1f34e84f15a3 (diff) | |
download | pacman-0d2ba870c96d1b4b3d5fabfabe303bc6b1c989fd.tar.gz pacman-0d2ba870c96d1b4b3d5fabfabe303bc6b1c989fd.tar.xz |
Do not #define _RESERVED_IDENTIFIERS
Signed-off-by: Ivy Foster <ivy.foster@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm_list.h')
-rw-r--r-- | lib/libalpm/alpm_list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libalpm/alpm_list.h b/lib/libalpm/alpm_list.h index 5af84e1a..cf7d463f 100644 --- a/lib/libalpm/alpm_list.h +++ b/lib/libalpm/alpm_list.h @@ -17,8 +17,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef _ALPM_LIST_H -#define _ALPM_LIST_H +#ifndef ALPM_LIST_H +#define ALPM_LIST_H #include <stdlib.h> /* size_t */ @@ -90,6 +90,6 @@ void *alpm_list_to_array(const alpm_list_t *list, size_t n, size_t size); #ifdef __cplusplus } #endif -#endif /* _ALPM_LIST_H */ +#endif /* ALPM_LIST_H */ /* vim: set noet: */ |