Antonio Nino Diaz | 27989a8 | 2018-08-17 10:45:47 +0100 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2012-2017 Roberto E. Vargas Caballero | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
Antonio Nino Diaz | 7c0ff9c | 2018-08-15 19:51:09 +0100 | [diff] [blame] | 6 | /* |
Bence Szépkúti | b382ac6 | 2019-10-25 17:48:20 +0200 | [diff] [blame^] | 7 | * Portions copyright (c) 2018-2019, ARM Limited and Contributors. |
Antonio Nino Diaz | 7c0ff9c | 2018-08-15 19:51:09 +0100 | [diff] [blame] | 8 | * All rights reserved. |
9 | */ | ||||
Antonio Nino Diaz | 27989a8 | 2018-08-17 10:45:47 +0100 | [diff] [blame] | 10 | |
Antonio Nino Diaz | 2fb88cb | 2018-08-14 13:39:29 +0100 | [diff] [blame] | 11 | #ifndef TIME_H |
12 | #define TIME_H | ||||
Antonio Nino Diaz | 27989a8 | 2018-08-17 10:45:47 +0100 | [diff] [blame] | 13 | |
Antonio Nino Diaz | 7c0ff9c | 2018-08-15 19:51:09 +0100 | [diff] [blame] | 14 | #include <time_.h> |
Antonio Nino Diaz | 27989a8 | 2018-08-17 10:45:47 +0100 | [diff] [blame] | 15 | |
Bence Szépkúti | b382ac6 | 2019-10-25 17:48:20 +0200 | [diff] [blame^] | 16 | typedef long int time_t; |
17 | |||||
Antonio Nino Diaz | 27989a8 | 2018-08-17 10:45:47 +0100 | [diff] [blame] | 18 | #ifndef NULL |
19 | #define NULL ((void *) 0) | ||||
20 | #endif | ||||
21 | |||||
Antonio Nino Diaz | 2fb88cb | 2018-08-14 13:39:29 +0100 | [diff] [blame] | 22 | #endif /* TIME_H */ |