Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/src/pacman/util.h
diff options
context:
space:
mode:
authorIvy Foster <ivy.foster@gmail.com>2016-09-03 22:14:49 -0500
committerAndrew Gregory <andrew.gregory.8@gmail.com>2017-05-08 23:27:43 -0400
commitc889403cf71f0d94d6bcc0cf1fac4790668f4635 (patch)
tree0cf0032d26748126b94d7ae14d4405a1a9203aa1 /src/pacman/util.h
parent537f8c881cbecab587c1edb741640e0ff6b78504 (diff)
Do not #define _RESERVED_IDENTIFIERS
Signed-off-by: Ivy Foster <ivy.foster@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org> (cherry picked from commit 0d2ba870c96d1b4b3d5fabfabe303bc6b1c989fd)
Diffstat (limited to 'src/pacman/util.h')
-rw-r--r--src/pacman/util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pacman/util.h b/src/pacman/util.h
index f5e37c81..74ce4cb2 100644
--- a/src/pacman/util.h
+++ b/src/pacman/util.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 _PM_UTIL_H
-#define _PM_UTIL_H
+#ifndef PM_UTIL_H
+#define PM_UTIL_H
#include <stdlib.h>
#include <stdarg.h>
@@ -82,6 +82,6 @@ int pm_vfprintf(FILE *stream, alpm_loglevel_t level, const char *format, va_list
int pm_sprintf(char **string, alpm_loglevel_t level, const char *format, ...) __attribute__((format(printf,3,4)));
int pm_vasprintf(char **string, alpm_loglevel_t level, const char *format, va_list args) __attribute__((format(printf,3,0)));
-#endif /* _PM_UTIL_H */
+#endif /* PM_UTIL_H */
/* vim: set noet: */