X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fapi%2Fsys_time.c;h=54fc0e77b431e529db45882719c2726eb75c26d4;hb=0ef2646848cbc2e6c59f8757165b5790b0132281;hp=7aa089344830fffb67a4bce4a233a1aa875b826b;hpb=6a2161f389e6115bb3b948d71c56c8c882eaeda6;p=libc-test diff --git a/src/api/sys_time.c b/src/api/sys_time.c index 7aa0893..54fc0e7 100644 --- a/src/api/sys_time.c +++ b/src/api/sys_time.c @@ -13,17 +13,17 @@ F(suseconds_t,tv_usec) } C(FD_SETSIZE) #ifndef FD_CLR -void(*p_FD_CLR)(int,fd_set*) = FD_CLR; +{void(*p)(int,fd_set*) = FD_CLR;} #endif #ifndef FD_ISSET -int(*p_FD_ISSET)(int,fd_set*) = FD_ISSET; +{int(*p)(int,fd_set*) = FD_ISSET;} #endif #ifndef FD_SET -void(*p_FD_SET)(int,fd_set*) = FD_SET; +{void(*p)(int,fd_set*) = FD_SET;} #endif #ifndef FD_ZERO -void(*p_FD_ZERO)(fd_set*) = FD_ZERO; +{void(*p)(fd_set*) = FD_ZERO;} #endif -int(*p_select)(int,fd_set*restrict,fd_set*restrict,fd_set*restrict,struct timeval*restrict) = select; -int(*p_utimes)(const char*,const struct timeval[]) = utimes; +{int(*p)(int,fd_set*restrict,fd_set*restrict,fd_set*restrict,struct timeval*restrict) = select;} +{int(*p)(const char*,const struct timeval[]) = utimes;} }