1 // Copyright 2021 The Android Open Source Project 2 // 3 // This software is licensed under the terms of the GNU General Public 4 // License version 2, as published by the Free Software Foundation, and 5 // may be copied, distributed, and modified under those terms. 6 // 7 // This program is distributed in the hope that it will be useful, 8 // but WITHOUT ANY WARRANTY; without even the implied warranty of 9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 // GNU General Public License for more details. 11 #ifndef _AEMU_SYS_CDEFS_H_ 12 #define _AEMU_SYS_CDEFS_H_ 13 14 #ifdef __cplusplus 15 #define __BEGIN_DECLS extern "C" { 16 #define __END_DECLS } 17 #else 18 #define __BEGIN_DECLS /* empty */ 19 #define __END_DECLS /* empty */ 20 #endif 21 22 23 #endif /* Not _AEMU_SYS_CDEFS_H_ */