summaryrefslogtreecommitdiffstats
path: root/libdm/datastruct
diff options
context:
space:
mode:
authorAlasdair Kergon <agk@redhat.com>2003-03-24 18:08:53 +0000
committerAlasdair Kergon <agk@redhat.com>2003-03-24 18:08:53 +0000
commit26e7f2e0c4eba61ac7aa91810f549837eb880827 (patch)
tree008337d10c630f0f842931863ab8166184cbfdaf /libdm/datastruct
parent3a1703294b88978fae66b152068a8c380695f34e (diff)
downloadlvm2-26e7f2e0c4eba61ac7aa91810f549837eb880827.tar.gz
lvm2-26e7f2e0c4eba61ac7aa91810f549837eb880827.tar.xz
lvm2-26e7f2e0c4eba61ac7aa91810f549837eb880827.zip
Tidy various pre-processing incl. making libdl optional.
Diffstat (limited to 'libdm/datastruct')
-rw-r--r--libdm/datastruct/list.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libdm/datastruct/list.h b/libdm/datastruct/list.h
index 48ec81bf..0c6ca405 100644
--- a/libdm/datastruct/list.h
+++ b/libdm/datastruct/list.h
@@ -7,6 +7,8 @@
#ifndef _LVM_LIST_H
#define _LVM_LIST_H
+#include <assert.h>
+
struct list {
struct list *n, *p;
};