1*0fca6ea1SDimitry Andric //===----------------------------------------------------------------------===// 2*0fca6ea1SDimitry Andric // 3*0fca6ea1SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*0fca6ea1SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5*0fca6ea1SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*0fca6ea1SDimitry Andric // 7*0fca6ea1SDimitry Andric //===----------------------------------------------------------------------===// 8*0fca6ea1SDimitry Andric 9*0fca6ea1SDimitry Andric // For information see https://libcxx.llvm.org/DesignDocs/TimeZone.html 10*0fca6ea1SDimitry Andric 11*0fca6ea1SDimitry Andric #ifndef _LIBCPP_SRC_INCLUDE_TZDB_TZ_PRIVATE_H 12*0fca6ea1SDimitry Andric #define _LIBCPP_SRC_INCLUDE_TZDB_TZ_PRIVATE_H 13*0fca6ea1SDimitry Andric 14*0fca6ea1SDimitry Andric #include <chrono> 15*0fca6ea1SDimitry Andric 16*0fca6ea1SDimitry Andric #include "types_private.h" 17*0fca6ea1SDimitry Andric 18*0fca6ea1SDimitry Andric _LIBCPP_BEGIN_NAMESPACE_STD 19*0fca6ea1SDimitry Andric 20*0fca6ea1SDimitry Andric namespace chrono { 21*0fca6ea1SDimitry Andric 22*0fca6ea1SDimitry Andric void __init_tzdb(tzdb& __tzdb, __tz::__rules_storage_type& __rules); 23*0fca6ea1SDimitry Andric 24*0fca6ea1SDimitry Andric } // namespace chrono 25*0fca6ea1SDimitry Andric 26*0fca6ea1SDimitry Andric _LIBCPP_END_NAMESPACE_STD 27*0fca6ea1SDimitry Andric 28*0fca6ea1SDimitry Andric #endif // _LIBCPP_SRC_INCLUDE_TZDB_TZ_PRIVATE_H 29