mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
21 lines
272 B
C
21 lines
272 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the GPL.
|
|
*/
|
|
|
|
#ifndef _LVM_TYPES_H
|
|
#define _LVM_TYPES_H
|
|
|
|
#include "list.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <inttypes.h>
|
|
|
|
struct str_list {
|
|
struct list list;
|
|
char *str;
|
|
};
|
|
|
|
#endif
|