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 6
6
#include <stdio.h>
7
7
#include <stdlib.h>
8
8
#include <math.h>
9
+ #include <time.h>
9
10
#include <zephyr/kernel.h>
10
11
11
12
#define FORCE_EXPORT_SYM (name ) \
@@ -48,13 +49,21 @@ EXPORT_SYMBOL(isupper);
48
49
EXPORT_SYMBOL (islower );
49
50
EXPORT_SYMBOL (isxdigit );
50
51
52
+ EXPORT_SYMBOL (sin );
53
+ EXPORT_SYMBOL (cos );
54
+ EXPORT_SYMBOL (tan );
55
+ EXPORT_SYMBOL (atan );
56
+ EXPORT_SYMBOL (pow );
51
57
EXPORT_SYMBOL (atan2 );
52
58
EXPORT_SYMBOL (atan2f );
53
59
EXPORT_SYMBOL (atanf );
54
60
EXPORT_SYMBOL (asinf );
55
61
EXPORT_SYMBOL (acosf );
56
62
EXPORT_SYMBOL (sqrt );
57
63
EXPORT_SYMBOL (sqrtf );
64
+ EXPORT_SYMBOL (ldexp );
65
+
66
+ EXPORT_SYMBOL (mktime );
58
67
59
68
EXPORT_SYMBOL (k_sched_lock );
60
69
EXPORT_SYMBOL (k_sched_unlock );
@@ -187,19 +196,15 @@ EXPORT_SYMBOL(k_work_schedule);
187
196
//FORCE_EXPORT_SYM(k_timer_user_data_set);
188
197
//FORCE_EXPORT_SYM(k_timer_start);
189
198
190
- EXPORT_SYMBOL (sin );
191
- EXPORT_SYMBOL (cos );
192
- EXPORT_SYMBOL (tan );
193
- EXPORT_SYMBOL (atan );
194
- EXPORT_SYMBOL (pow );
195
-
196
199
EXPORT_SYMBOL (puts );
197
200
EXPORT_SYMBOL (putchar );
198
201
EXPORT_SYMBOL (printf );
199
202
EXPORT_SYMBOL (sprintf );
200
203
EXPORT_SYMBOL (snprintf );
201
204
EXPORT_SYMBOL (cbvprintf );
202
- ;
205
+ EXPORT_SYMBOL (sscanf );
206
+ EXPORT_SYMBOL (vsnprintf );
207
+
203
208
FORCE_EXPORT_SYM (abort );
204
209
#if defined(CONFIG_RING_BUFFER )
205
210
EXPORT_SYMBOL (ring_buf_get );
@@ -239,4 +244,6 @@ FORCE_EXPORT_SYM(__aeabi_dcmpge);
239
244
240
245
#if defined (CONFIG_CPP )
241
246
FORCE_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