summaryrefslogtreecommitdiffstats
path: root/include/list.h
diff options
context:
space:
mode:
authorKarel Zak2011-01-14 15:49:07 +0100
committerKarel Zak2011-01-14 15:49:07 +0100
commit85950b68e4ded35d54883ace4407c9df5d521f88 (patch)
treec10558008460090ca3a7faab1362750085a18d5f /include/list.h
parentdocs: update TODO (diff)
downloadkernel-qcow2-util-linux-85950b68e4ded35d54883ace4407c9df5d521f88.tar.gz
kernel-qcow2-util-linux-85950b68e4ded35d54883ace4407c9df5d521f88.tar.xz
kernel-qcow2-util-linux-85950b68e4ded35d54883ace4407c9df5d521f88.zip
include: fix list.h ifdefs
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'include/list.h')
-rw-r--r--include/list.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/list.h b/include/list.h
index 7648c3c03..f7b17fe37 100644
--- a/include/list.h
+++ b/include/list.h
@@ -5,8 +5,8 @@
* (based on list.h from e2fsprogs)
*/
-#if !defined(_LIBMOUNT_LIST_H) && !defined(LIST_HEAD)
-#define _LIBMOUNT_LIST_H
+#ifndef UTIL_LINUX_LIST_H
+#define UTIL_LINUX_LIST_H
/* TODO: use AC_C_INLINE */
#ifdef __GNUC__
@@ -194,4 +194,4 @@ _INLINE_ void list_splice(struct list_head *list, struct list_head *head)
#undef _INLINE_
-#endif /* __LIBFSPROBE_LIST_H__ */
+#endif /* UTIL_LINUX_LIST_H */