Ambroise Vincent | 4128f9f | 2019-02-11 13:34:41 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012-2017 Roberto E. Vargas Caballero |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | /* |
Bence Szépkúti | 5913030 | 2019-12-18 17:18:16 +0100 | [diff] [blame] | 7 | * Portions copyright (c) 2018-2019, ARM Limited and Contributors. |
Ambroise Vincent | 4128f9f | 2019-02-11 13:34:41 +0000 | [diff] [blame] | 8 | * All rights reserved. |
| 9 | */ |
| 10 | |
| 11 | #ifndef TIME_H |
| 12 | #define TIME_H |
| 13 | |
Bence Szépkúti | 5913030 | 2019-12-18 17:18:16 +0100 | [diff] [blame] | 14 | #include <stddef.h> |
Ambroise Vincent | 4128f9f | 2019-02-11 13:34:41 +0000 | [diff] [blame] | 15 | |
Bence Szépkúti | 5913030 | 2019-12-18 17:18:16 +0100 | [diff] [blame] | 16 | typedef long int time_t; |
Ambroise Vincent | 4128f9f | 2019-02-11 13:34:41 +0000 | [diff] [blame] | 17 | |
| 18 | #endif /* TIME_H */ |