1menuconfig RTT_POSIX_TESTCASE_TIME_H 2 bool "<time.h>" 3 default n 4 5if RTT_POSIX_TESTCASE_TIME_H 6 7 config TIME_H_ASCTIME 8 bool "<time.h, sys/time.h> -> asctime" 9 default n 10 11 config TIME_H_CLOCK_GETTIME 12 bool "<time.h, sys/time.h> -> clock_gettime" 13 default n 14 15 config TIME_H_CLOCK 16 bool "<time.h, sys/time.h> -> clock" 17 default n 18 19 config TIME_H_DIFFTIME 20 bool "<time.h, sys/time.h> -> difftime" 21 default n 22 23 config TIME_H_GMTIME_R 24 bool "<time.h, sys/time.h> -> gmtime_r" 25 default n 26 27 config TIME_H_GMTIME 28 bool "<time.h, sys/time.h> -> gmtime" 29 default n 30 31 config TIME_H_LOCALTIME 32 bool "<time.h, sys/time.h> -> localtime" 33 default n 34 35 config TIME_H_MKTIME 36 bool "<time.h, sys/time.h> -> mktime" 37 default n 38 39 config TIME_H_NANOSLEEP 40 bool "<time.h, sys/time.h> -> nanosleep" 41 default n 42 43 config TIME_H_STRFTIME 44 bool "<time.h, sys/time.h> -> strftime" 45 default n 46 47 config TIME_H_TIME 48 bool "<time.h, sys/time.h> -> time" 49 default n 50 51 config TIME_H_UTIMES 52 bool "<time.h, sys/time.h> -> utimes" 53 default n 54 55endif 56