summaryrefslogtreecommitdiffstats
path: root/lib/datastruct/lvm-types.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/datastruct/lvm-types.h')
-rw-r--r--lib/datastruct/lvm-types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/datastruct/lvm-types.h b/lib/datastruct/lvm-types.h
index 3838fbfa..3614e7b6 100644
--- a/lib/datastruct/lvm-types.h
+++ b/lib/datastruct/lvm-types.h
@@ -7,6 +7,8 @@
#ifndef _LVM_TYPES_H
#define _LVM_TYPES_H
+#include "list.h"
+
#include <sys/types.h>
typedef __uint8_t uint8_t;
@@ -21,4 +23,10 @@ typedef __int32_t int32_t;
typedef __int64_t int64_t;
#endif
+
+struct str_list {
+ struct list_head list;
+ char *str;
+};
+
#endif