|
@@ -27,13 +27,19 @@
|
|
|
#define MICROSECOND_PER_TICK (MICROSECOND_PER_SECOND / RT_TICK_PER_SECOND)
|
|
|
#define NANOSECOND_PER_TICK (NANOSECOND_PER_SECOND / RT_TICK_PER_SECOND)
|
|
|
|
|
|
+#ifdef __cplusplus
|
|
|
+extern "C" {
|
|
|
+#endif
|
|
|
int libc_system_init(void);
|
|
|
int libc_stdio_set_console(const char* device_name, int mode);
|
|
|
int libc_stdio_get_console(void);
|
|
|
|
|
|
/* some time related function */
|
|
|
-int libc_set_time(const struct timespec *time);
|
|
|
-int libc_get_time(struct timespec *time);
|
|
|
-int libc_time_to_tick(const struct timespec *time);
|
|
|
+int libc_set_time(const struct timespec* time);
|
|
|
+int libc_get_time(struct timespec* time);
|
|
|
+int libc_time_to_tick(const struct timespec* time);
|
|
|
+#ifdef __cplusplus
|
|
|
+}
|
|
|
+#endif
|
|
|
|
|
|
#endif
|