18 lines · c
1//===-- Windows Time Macros Extension -------------------------------------===//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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_LIBC_MACROS_WINDOWS_TIME_MACROS_EXT_H10#define LLVM_LIBC_MACROS_WINDOWS_TIME_MACROS_EXT_H11 12#define CLOCK_MONOTONIC 013#define CLOCK_REALTIME 114#define CLOCK_PROCESS_CPUTIME_ID 215#define CLOCK_THREAD_CPUTIME_ID 316 17#endif // LLVM_LIBC_MACROS_WINDOWS_TIME_MACROS_EXT_H18