blob: 92928231204cba457c069bdc030f61e0c3100539 [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001#ifndef AOS_CTDT_H_
2#define AOS_CTDT_H_
3
4// This function will call any function that starts with aos_init_function_*.
5// It will assume that these functions have the signature
6// 'extern "C" aos_init_function_whatever(void);'
7// The aos_ctdt.c/o files are generated at compile time (like ctdt.c/o).
8#ifdef __cplusplus
9extern "C" {
10#endif
11void aos_call_init_functions();
12#ifdef __cplusplus
13}
14#endif
15
16#endif
17