xref: /openbsd-src/lib/libc/hidden/uuid.h (revision 1f984d6a3795e03dd7bd2c635bfee09cf93a6974)
1*1f984d6aSguenther /*	$OpenBSD: uuid.h,v 1.1 2015/09/13 11:36:16 guenther Exp $	*/
2*1f984d6aSguenther /*
3*1f984d6aSguenther  * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org>
4*1f984d6aSguenther  *
5*1f984d6aSguenther  * Permission to use, copy, modify, and distribute this software for any
6*1f984d6aSguenther  * purpose with or without fee is hereby granted, provided that the above
7*1f984d6aSguenther  * copyright notice and this permission notice appear in all copies.
8*1f984d6aSguenther  *
9*1f984d6aSguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10*1f984d6aSguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*1f984d6aSguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12*1f984d6aSguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*1f984d6aSguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*1f984d6aSguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15*1f984d6aSguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16*1f984d6aSguenther  */
17*1f984d6aSguenther 
18*1f984d6aSguenther #ifndef _LIBC_UUID_H_
19*1f984d6aSguenther #define _LIBC_UUID_H_
20*1f984d6aSguenther 
21*1f984d6aSguenther #include_next <uuid.h>
22*1f984d6aSguenther 
23*1f984d6aSguenther PROTO_DEPRECATED(uuid_compare);
24*1f984d6aSguenther PROTO_DEPRECATED(uuid_create);
25*1f984d6aSguenther PROTO_NORMAL(uuid_create_nil);
26*1f984d6aSguenther PROTO_DEPRECATED(uuid_dec_be);
27*1f984d6aSguenther PROTO_DEPRECATED(uuid_dec_le);
28*1f984d6aSguenther PROTO_DEPRECATED(uuid_enc_be);
29*1f984d6aSguenther PROTO_DEPRECATED(uuid_enc_le);
30*1f984d6aSguenther PROTO_DEPRECATED(uuid_equal);
31*1f984d6aSguenther PROTO_DEPRECATED(uuid_from_string);
32*1f984d6aSguenther PROTO_DEPRECATED(uuid_hash);
33*1f984d6aSguenther PROTO_NORMAL(uuid_is_nil);
34*1f984d6aSguenther PROTO_DEPRECATED(uuid_to_string);
35*1f984d6aSguenther 
36*1f984d6aSguenther #endif /* !_LIBC_UUID_H_ */
37