sys_now() must return u32_t, not unsigned long

This commit is contained in:
goldsimon 2009-02-18 20:37:42 +00:00
parent 56038b6457
commit 638020ec70

View File

@ -142,7 +142,7 @@ sys_thread_t sys_thread_new(char *name, void (* thread)(void *arg), void *arg, i
/* The following functions are used only in Unix code, and
can be omitted when porting the stack. */
/* Returns the current time in microseconds. */
unsigned long sys_now(void);
u32_t sys_now(void);
#endif /* NO_SYS */