1 //===-- Proxy for clockid_t -----------------------------------------------===// 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 #ifndef LLVM_LIBC_HDR_TYPES_CLOCKID_T_H 10 #define LLVM_LIBC_HDR_TYPES_CLOCKID_T_H 11 12 // TODO: we will need to decide how to export extension to windows. 13 #if defined(LIBC_FULL_BUILD) || defined(_WIN32) 14 15 #include "include/llvm-libc-types/clockid_t.h" 16 17 #else // Overlay mode 18 19 #include <sys/types.h> 20 21 #endif // LLVM_LIBC_FULL_BUILD 22 23 #endif // LLVM_LIBC_HDR_TYPES_CLOCKID_T_H 24