Path: blob/main/system/lib/llvm-libc/hdr/time_macros.h
6168 views
//===-- Definition of macros from time.h ----------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_HDR_TIME_MACROS_H9#define LLVM_LIBC_HDR_TIME_MACROS_H1011#ifdef LIBC_FULL_BUILD1213#include "include/llvm-libc-macros/time-macros.h"1415#else // Overlay mode1617#include <time.h>1819#endif // LLVM_LIBC_FULL_BUILD2021// TODO: For now, on windows, let's always include the extension header.22// We will need to decide how to export this header.23#ifdef _WIN3224#include "include/llvm-libc-macros/windows/time-macros-ext.h"25#endif // _WIN322627#endif // LLVM_LIBC_HDR_TIME_MACROS_H282930