blob: 92928231204cba457c069bdc030f61e0c3100539 [file] [log] [blame]
#ifndef AOS_CTDT_H_
#define AOS_CTDT_H_
// This function will call any function that starts with aos_init_function_*.
// It will assume that these functions have the signature
// 'extern "C" aos_init_function_whatever(void);'
// The aos_ctdt.c/o files are generated at compile time (like ctdt.c/o).
#ifdef __cplusplus
extern "C" {
#endif
void aos_call_init_functions();
#ifdef __cplusplus
}
#endif
#endif