libc_time.h 361 B

123456789101112
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #ifndef LIBC_TIME_H_
  5. #define LIBC_TIME_H_
  6. #include <limits.h>
  7. #include <time.h>
  8. int __secs_to_tm(long long t, struct tm *tm);
  9. #endif /* LIBC_TIME_H_ */