[Libc][Minilibc] Add type 'clock_t' to minilibc.

This commit is contained in:
armink 2018-02-16 20:40:20 +08:00
parent a692cc1549
commit 0c4922becb
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,8 @@ typedef int mode_t;
typedef unsigned long clockid_t;
typedef int pid_t;
typedef unsigned long clock_t; /* clock() */
#ifndef NULL
#define NULL (0)
#endif