From cfe74eac3be1fc85aacdd96a3dc1530d5cefd4a8 Mon Sep 17 00:00:00 2001 From: Mark Date: Sat, 11 Jul 2020 12:57:31 +0300 Subject: [PATCH] Add clock_t and useconds_t to user types --- include/user/types.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/user/types.h b/include/user/types.h index 45eeedf..04185fa 100644 --- a/include/user/types.h +++ b/include/user/types.h @@ -18,4 +18,7 @@ typedef uint32_t mode_t; typedef uint16_t uid_t; typedef uint16_t gid_t; +typedef uint64_t clock_t; +typedef uint64_t useconds_t; + typedef int32_t pid_t;