uuid.h: Add protection against multiple inclusion

bitmap-optimize
Theodore Ts'o 2001-06-22 20:51:42 -04:00
parent b006f361ed
commit 163337b069
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-06-21 Theodore Tso <tytso@valinux.com>
* uuid.h: Add protection against multiple inclusion
2001-06-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.21

View File

@ -9,6 +9,9 @@
* %End-Header%
*/
#ifndef _UUID_UUID_H
#define _UUID_UUID_H
#include <sys/types.h>
#include <sys/time.h>
#include <time.h>
@ -48,3 +51,5 @@ void uuid_unparse(uuid_t uu, char *out);
time_t uuid_time(uuid_t uu, struct timeval *ret_tv);
int uuid_type(uuid_t uu);
int uuid_variant(uuid_t uu);
#endif /* _UUID_UUID_H */