xiaoxiang781216 commented on a change in pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#discussion_r731866866
########## File path: include/time.h ########## @@ -102,7 +102,12 @@ /* Scalar types */ +#ifdef CONFIG_SYSTEM_TIME64 +typedef uint64_t time_t; /* Holds time in seconds */ +#else typedef uint32_t time_t; /* Holds time in seconds */ +#endif + Review comment: So we add new CONFIG to specify the size of time_t? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org