1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-10-22 19:33:16 +03:00
Files
lvm2/lib/datastruct/lvm-types.h
2003-01-08 16:41:22 +00:00

28 lines
394 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>
/* Define some portable printing types */
#if __WORDSIZE == 64
#define PRIsize_t "lu"
#else
#define PRIsize_t "u"
#endif
struct str_list {
struct list list;
char *str;
};
#endif