]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Utility/UuidCompatibility.h
Merge lldb trunk r366426, resolve conflicts, and update FREEBSD-Xlist.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Utility / UuidCompatibility.h
1 //===-- UuidCompatibility.h -------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 // Include this header if your system does not have a definition of uuid_t
10
11 #ifndef utility_UUID_COMPATIBILITY_H
12 #define utility_UUID_COMPATIBILITY_H
13
14 // uuid_t is guaranteed to always be a 16-byte array
15 typedef unsigned char uuid_t[16];
16
17 #endif // utility_UUID_COMPATIBILITY_H