Explorar el Código

Fixed bad commit.

Brucey hace 8 años
padre
commit
76618914b0
Se han modificado 1 ficheros con 2 adiciones y 4 borrados
  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 ){