| 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 | /* |
| Govindraj Raja | 4c700c1 | 2023-08-01 15:52:40 -0500 | [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 | |
| Bence Szépkúti | d45c323 | 2019-10-25 18:12:41 +0200 | [diff] [blame] | 14 | #include <stddef.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 | 2fb88cb | 2018-08-14 13:39:29 +0100 | [diff] [blame] | 18 | #endif /* TIME_H */ |