From 163337b069bd88d77e01f348a8b924a12caaa5a7 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 22 Jun 2001 20:51:42 -0400 Subject: [PATCH] uuid.h: Add protection against multiple inclusion --- lib/uuid/ChangeLog | 4 ++++ lib/uuid/uuid.h | 5 +++++ 2 files changed, 9 insertions(+) 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 */ -- 1.8.3.1