summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/versioncmp.h
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-03-06 02:21:41 +0100
committerDan McGee <dan@archlinux.org>2007-03-06 02:21:41 +0100
commit5baba8439761a54c488ff42e4e599b3c93dbe669 (patch)
tree3c9a0585fb7a558bba9c9574777058e2e21d97e1 /lib/libalpm/versioncmp.h
parent869e81e1cf115e835040d0ecadb6108880103abe (diff)
downloadpacman-5baba8439761a54c488ff42e4e599b3c93dbe669.tar.gz
pacman-5baba8439761a54c488ff42e4e599b3c93dbe669.tar.xz
* Added missing header include guards in md5.h and sha1.h.
* Some header cleanup on the pacman side of things - we had alpm.h instead alpm_list.h in a few headers. * removed an extra slash in path-building snprintf in server.c.
Diffstat (limited to 'lib/libalpm/versioncmp.h')
-rw-r--r--lib/libalpm/versioncmp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libalpm/versioncmp.h b/lib/libalpm/versioncmp.h
index 5614ada3..60ae7a2c 100644
--- a/lib/libalpm/versioncmp.h
+++ b/lib/libalpm/versioncmp.h
@@ -20,8 +20,8 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
-#ifndef _PM_RPMVERCMP_H
-#define _PM_RPMVERCMP_H
+#ifndef _ALPM_VERSIONCMP_H
+#define _ALPM_VERSIONCMP_H
#include "deps.h"
#include "package.h"
@@ -30,6 +30,6 @@ int _alpm_depcmp(pmpkg_t *pkg, pmdepend_t *dep);
int _alpm_versioncmp(const char *a, const char *b);
-#endif
+#endif /* _ALPM_VERSIONCMP_H */
/* vim: set ts=2 sw=2 noet: */