From: Theodore Ts'o Date: Sat, 23 Jun 2001 00:51:42 +0000 (-0400) Subject: uuid.h: Add protection against multiple inclusion X-Git-Tag: E2FSPROGS-1_22~9 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=163337b069bd88d77e01f348a8b924a12caaa5a7;p=tools%2Fe2fsprogs.git uuid.h: Add protection against multiple inclusion --- diff --git a/lib/uuid/ChangeLog b/lib/uuid/ChangeLog index d7b415c..aa8e830 100644 --- a/lib/uuid/ChangeLog +++ b/lib/uuid/ChangeLog @@ -1,3 +1,7 @@ +2001-06-21 Theodore Tso + + * uuid.h: Add protection against multiple inclusion + 2001-06-15 Theodore Tso * Release of E2fsprogs 1.21 diff --git a/lib/uuid/uuid.h b/lib/uuid/uuid.h index 0e974d8..db0147c 100644 --- a/lib/uuid/uuid.h +++ b/lib/uuid/uuid.h @@ -9,6 +9,9 @@ * %End-Header% */ +#ifndef _UUID_UUID_H +#define _UUID_UUID_H + #include #include #include @@ -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 */