1 /*
2  * Copyright (c) 2023 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef BOARDS_POSIX_NATIVE_SIM_TIMER_MODEL_H
8 #define BOARDS_POSIX_NATIVE_SIM_TIMER_MODEL_H
9 
10 #warning "This transitional header is now deprecated and will be removed by v4.4. "\
11 	 "Use nsi_timer_model.h instead."
12 
13 /*
14  * To support the native_posix timer driver
15  * we provide a header with the same name as in native_posix
16  */
17 #include "nsi_hw_scheduler.h"
18 #include "nsi_timer_model.h"
19 #include "native_posix_compat.h"
20 
21 #endif /* BOARDS_POSIX_NATIVE_SIM_TIMER_MODEL_H */
22