1 /*
2  * Copyright (c) 2015 Wind River Systems, Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /*
8  * @file
9  * @brief Stub for C++ pure virtual functions
10  */
11 
12 /**
13  * @brief Stub for pure virtual functions
14  *
15  * This routine is needed for linking C++ code that uses pure virtual
16  * functions.
17  */
__cxa_pure_virtual(void)18 void __cxa_pure_virtual(void)
19 {
20 	while (1) {
21 	}
22 }
23