diff options
author | 2014-08-31 09:36:36 +0000 | |
---|---|---|
committer | 2014-08-31 09:36:36 +0000 | |
commit | 9a210c530b30b010d47b1a14769d2c41703ce80e (patch) | |
tree | f3347cd7b038ecbc877dd40cfaf6416bb3f8e98c /sys | |
parent | Make sysmerge(8) completely silent by default when no file is modified. (diff) | |
download | wireguard-openbsd-9a210c530b30b010d47b1a14769d2c41703ce80e.tar.xz wireguard-openbsd-9a210c530b30b010d47b1a14769d2c41703ce80e.zip |
Add uuid support routines to libc. From FreeBSD via NetBSD via Bitrig via
Markus Mueller.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/uuid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/uuid.h b/sys/sys/uuid.h index 1781b608943..d7353af3a47 100644 --- a/sys/sys/uuid.h +++ b/sys/sys/uuid.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uuid.h,v 1.2 2014/07/15 23:10:27 miod Exp $ */ +/* $OpenBSD: uuid.h,v 1.3 2014/08/31 09:36:39 miod Exp $ */ /* $NetBSD: uuid.h,v 1.5 2008/11/18 14:01:03 joerg Exp $ */ /* @@ -68,7 +68,7 @@ void uuid_enc_le(void *, const struct uuid *); #else /* _KERNEL */ -/* typedef struct uuid uuid_t; */ +typedef struct uuid uuid_t; #endif /* _KERNEL */ |