Browse Source

Fixed bad commit.

Brucey 8 năm trước cách đây
mục cha
commit
76618914b0
1 tập tin đã thay đổi với 2 bổ sung4 xóa
  1. 2 4
      stdc.mod/stdc.c

+ 2 - 4
stdc.mod/stdc.c

@@ -483,10 +483,8 @@ int getpeername_( int socket,void *addr,int *len ){
 	return getpeername( socket,addr,len );
 }
 
-void time_( void *ttime ){
-	time( (time_t*)ttime );
-time_t time_( void *ttime ){
-	return time( (time_t*)ttime );
+int time_( void *ttime ){
+	return (int)time( (time_t*)ttime );
 }
 
 void *localtime_( void *ttime ){