]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
libuuid: add header file guard [lgtm scan]
authorKarel Zak <kzak@redhat.com>
Fri, 20 Sep 2019 14:06:00 +0000 (16:06 +0200)
committerKarel Zak <kzak@redhat.com>
Fri, 20 Sep 2019 14:06:00 +0000 (16:06 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
libuuid/src/uuidP.h

index 78183ded75d5f07690aa2550cf7f162efb7c1445..200702c1e5281254a8f4e2bf10960ebc57ba6e5b 100644 (file)
@@ -31,6 +31,8 @@
  * DAMAGE.
  * %End-Header%
  */
+#ifndef _UUID_UUID_PRIVATE_H
+#define _UUID_UUID_PRIVATE_H
 
 #include <inttypes.h>
 #include <sys/types.h>
@@ -88,3 +90,5 @@ struct uuid {
  */
 void uuid_pack(const struct uuid *uu, uuid_t ptr);
 void uuid_unpack(const uuid_t in, struct uuid *uu);
+
+#endif /* _UUID_UUID_PRIVATE_H */