File tree Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change 66#include <stdio.h>
77#include <stdlib.h>
88#include <math.h>
9+ #include <time.h>
910#include <zephyr/kernel.h>
1011
1112#define FORCE_EXPORT_SYM (name ) \
@@ -48,13 +49,21 @@ EXPORT_SYMBOL(isupper);
4849EXPORT_SYMBOL (islower );
4950EXPORT_SYMBOL (isxdigit );
5051
52+ EXPORT_SYMBOL (sin );
53+ EXPORT_SYMBOL (cos );
54+ EXPORT_SYMBOL (tan );
55+ EXPORT_SYMBOL (atan );
56+ EXPORT_SYMBOL (pow );
5157EXPORT_SYMBOL (atan2 );
5258EXPORT_SYMBOL (atan2f );
5359EXPORT_SYMBOL (atanf );
5460EXPORT_SYMBOL (asinf );
5561EXPORT_SYMBOL (acosf );
5662EXPORT_SYMBOL (sqrt );
5763EXPORT_SYMBOL (sqrtf );
64+ EXPORT_SYMBOL (ldexp );
65+
66+ EXPORT_SYMBOL (mktime );
5867
5968EXPORT_SYMBOL (k_sched_lock );
6069EXPORT_SYMBOL (k_sched_unlock );
@@ -187,19 +196,15 @@ EXPORT_SYMBOL(k_work_schedule);
187196//FORCE_EXPORT_SYM(k_timer_user_data_set);
188197//FORCE_EXPORT_SYM(k_timer_start);
189198
190- EXPORT_SYMBOL (sin );
191- EXPORT_SYMBOL (cos );
192- EXPORT_SYMBOL (tan );
193- EXPORT_SYMBOL (atan );
194- EXPORT_SYMBOL (pow );
195-
196199EXPORT_SYMBOL (puts );
197200EXPORT_SYMBOL (putchar );
198201EXPORT_SYMBOL (printf );
199202EXPORT_SYMBOL (sprintf );
200203EXPORT_SYMBOL (snprintf );
201204EXPORT_SYMBOL (cbvprintf );
202- ;
205+ EXPORT_SYMBOL (sscanf );
206+ EXPORT_SYMBOL (vsnprintf );
207+
203208FORCE_EXPORT_SYM (abort );
204209#if defined(CONFIG_RING_BUFFER )
205210EXPORT_SYMBOL (ring_buf_get );
@@ -239,4 +244,6 @@ FORCE_EXPORT_SYM(__aeabi_dcmpge);
239244
240245#if defined (CONFIG_CPP )
241246FORCE_EXPORT_SYM (__cxa_pure_virtual );
242- #endif
247+ #endif
248+
249+ FORCE_EXPORT_SYM (__assert_no_args );
You can’t perform that action at this time.
0 commit comments