X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=m4%2Fsys_time.m4;fp=m4%2Fsys_time.m4;h=0000000000000000000000000000000000000000;hb=c9b3436bd51a4dcf7d6cc6817d4c7a8ad99538d4;hp=9c1f74444ecb63c4f4d31eb57e1341180f03e12c;hpb=09735ea6055f959a9cac481268754f07d6f6eb9f;p=m6w6%2Fext-psi diff --git a/m4/sys_time.m4 b/m4/sys_time.m4 deleted file mode 100644 index 9c1f744..0000000 --- a/m4/sys_time.m4 +++ /dev/null @@ -1,26 +0,0 @@ -PSI_CHECK_SYS_TIME() { - PSI_CONFIG_POSIX(sys/time, sys/time.h) - - PSI_CONST(ITIMER_REAL, int) - PSI_CONST(ITIMER_VIRTUAL, int) - PSI_CONST(ITIMER_PROF, int) - - PSI_STRUCT(struct timeval, [ - time_t tv_sec, - suseconds_t tv_usec] - ) - PSI_STRUCT(struct itimerval, [ - struct timeval it_interval, - struct timeval it_value] - ) - PSI_STRUCT(struct timezone, [ - int tz_minuteswest, - int tz_dsttime] - ) - - PSI_DECL(int getitimer, [(int which, struct itimerval *value)]) - PSI_DECL(int setitimer, [(int which, struct itimerval *value, struct itimerval *ovalue)]) - PSI_DECL(int gettimeofday, [(struct timeval *tp, struct timezone *tz)]) - PSI_DECL(int utimes, [(char *path, struct timeval times@<:@2@:>@)]) - PSI_DECL(int utimensat, [(int fd, char *path, struct timespec times@<:@2@:>@)]) -}