]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
libuuid: fix includes in man pages
authorKarel Zak <kzak@redhat.com>
Thu, 27 Oct 2011 21:28:05 +0000 (23:28 +0200)
committerKarel Zak <kzak@redhat.com>
Thu, 3 Nov 2011 11:32:51 +0000 (12:32 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
libuuid/man/uuid.3
libuuid/man/uuid_clear.3
libuuid/man/uuid_compare.3
libuuid/man/uuid_copy.3
libuuid/man/uuid_generate.3
libuuid/man/uuid_is_null.3
libuuid/man/uuid_parse.3
libuuid/man/uuid_time.3
libuuid/man/uuid_unparse.3

index 4ae05f962f8285473078f7142bd6d414c7347c19..62b99eb92488cf6bdca6b50155f01081fb7fb691 100644 (file)
@@ -33,7 +33,7 @@
 .SH NAME
 uuid \- DCE compatible Universally Unique Identifier library
 .SH SYNOPSIS
-.B #include <uuid/uuid.h>
+.B #include <uuid.h>
 .SH DESCRIPTION
 The UUID library is used to generate unique identifiers for objects
 that may be accessible beyond the local system.  This library
index 5dfaa79054229d2f9a686e256fa7e9e0ae5b47c1..edb80d6ba84e9f98f2d7be286e21bab1769116fd 100644 (file)
@@ -34,7 +34,7 @@
 uuid_clear \- reset value of UUID variable to the NULL value
 .SH SYNOPSIS
 .nf
-.B #include <uuid/uuid.h>
+.B #include <uuid.h>
 .sp
 .BI "void uuid_clear(uuid_t " uu );
 .fi
index 1c633ffdfbb698fe4120baf2d9e825535b65f680..e748eac1505d3d8e4d52c46cbc225dab19b2ef2f 100644 (file)
@@ -34,7 +34,7 @@
 uuid_compare \- compare whether two UUIDs are the same
 .SH SYNOPSIS
 .nf
-.B #include <uuid/uuid.h>
+.B #include <uuid.h>
 .sp
 .BI "int uuid_compare(uuid_t " uu1 ", uuid_t " uu2)
 .fi
index a720f56c444ca5b8416ef0e411c9c076e8bb119a..f31d94e36478ccda8fe9b868afec0a03c98dc07f 100644 (file)
@@ -34,7 +34,7 @@
 uuid_copy \- copy a UUID value
 .SH SYNOPSIS
 .nf
-.B #include <uuid/uuid.h>
+.B #include <uuid.h>
 .sp
 .BI "void uuid_copy(uuid_t " dst ", uuid_t " src);
 .fi
index 8185056418ac75fb3c79170648fe9707a04aa512..07ad94ca39295a3d8566b15ba36b0e2dca04c4ca 100644 (file)
@@ -35,7 +35,7 @@ uuid_generate, uuid_generate_random, uuid_generate_time,
 uuid_generate_time_safe \- create a new unique UUID value
 .SH SYNOPSIS
 .nf
-.B #include <uuid/uuid.h>
+.B #include <uuid.h>
 .sp
 .BI "void uuid_generate(uuid_t " out );
 .BI "void uuid_generate_random(uuid_t " out );
index 68ef6545e0709de752c977b707d8c140b30340f0..ccf24ed020c2acc6c4d2e8f3ffb5605575cc2cab 100644 (file)
@@ -34,7 +34,7 @@
 uuid_is_null \- compare the value of the UUID to the NULL value
 .SH SYNOPSIS
 .nf
-.B #include <uuid/uuid.h>
+.B #include <uuid.h>
 .sp
 .BI "int uuid_is_null(uuid_t " uu );
 .fi
index faa0bcb52fad4822961ac889aed472736b2d607c..9030345747c7bc8c18f9fdffa65e169332650f03 100644 (file)
@@ -34,7 +34,7 @@
 uuid_parse \- convert an input UUID string into binary representation
 .SH SYNOPSIS
 .nf
-.B #include <uuid/uuid.h>
+.B #include <uuid.h>
 .sp
 .BI "int uuid_parse( char *" in ", uuid_t " uu );
 .fi
index b2d1579cdcaa98f4706bc77a123e5727b3734a11..c2af0b69c58e4128f262bb67721c291467378075 100644 (file)
@@ -34,7 +34,7 @@
 uuid_time \- extract the time at which the UUID was created
 .SH SYNOPSIS
 .nf
-.B #include <uuid/uuid.h>
+.B #include <uuid.h>
 .sp
 .BI "time_t uuid_time(uuid_t " uu ", struct timeval *" ret_tv )
 .fi
index cca68b17fb768e8c257da39787ca1155eb7c38b7..a7ab5d87adf63170063193a9389f966a051e23a4 100644 (file)
@@ -34,7 +34,7 @@
 uuid_unparse \- convert an UUID from binary representation to a string
 .SH SYNOPSIS
 .nf
-.B #include <uuid/uuid.h>
+.B #include <uuid.h>
 .sp
 .BI "void uuid_unparse(uuid_t " uu ", char *" out );
 .BI "void uuid_unparse_upper(uuid_t " uu ", char *" out );