1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-18 10:04:20 +03:00
lvm2/lib/datastruct/lvm-types.h

21 lines
272 B
C
Raw Normal View History

2001-10-04 11:40:13 +00:00
/*
* Copyright (C) 2001 Sistina Software (UK) Limited.
*
* This file is released under the GPL.
*/
#ifndef _LVM_TYPES_H
#define _LVM_TYPES_H
2001-10-25 11:34:55 +00:00
#include "list.h"
2001-10-04 11:40:13 +00:00
#include <sys/types.h>
2001-11-15 14:14:03 +00:00
#include <inttypes.h>
2001-10-25 11:34:55 +00:00
struct str_list {
2001-10-31 12:47:01 +00:00
struct list list;
2001-10-25 11:34:55 +00:00
char *str;
};
2001-10-04 11:40:13 +00:00
#endif