1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-22 17:35:59 +03:00
lvm2/lib/datastruct/lvm-types.h

24 lines
344 B
C
Raw Normal View History

2001-10-04 15:40:13 +04: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 15:34:55 +04:00
#include "list.h"
2001-10-04 15:40:13 +04:00
#include <sys/types.h>
2001-11-15 17:14:03 +03:00
#include <inttypes.h>
2001-10-25 15:34:55 +04:00
/* Define some portable printing types */
2003-04-02 23:11:23 +04:00
#define PRIsize_t "Zu"
2001-10-25 15:34:55 +04:00
struct str_list {
2001-10-31 15:47:01 +03:00
struct list list;
const char *str;
2001-10-25 15:34:55 +04:00
};
2001-10-04 15:40:13 +04:00
#endif