Diff for /gforth/Attic/ecvt.c between versions 1.1 and 1.2

version 1.1, 1994/11/29 16:49:47 version 1.2, 1994/12/12 17:10:34
Line 1 Line 1
 #include <sys/time.h>  
 #include <setjmp.h>  
   
 jmp_buf throw_jmp_buf;  
   
 /* select replacement for DOS computers for ms only */  
 void select(int n, int a, int b, int c, struct timeval * timeout)  
 {  
    struct timeval time1;  
    struct timeval time2;  
    struct timezone zone1;  
   
    gettimeofday(&time1,&zone1);  
    time1.tv_sec += timeout->tv_sec;  
    time1.tv_usec += timeout->tv_usec;  
    if(time1.tv_usec >= 1000000)  
      {  
         time1.tv_sec += time1.tv_usec / 1000000;  
         time1.tv_usec %= 1000000;  
      }  
    do  
      {  
         gettimeofday(&time2,&zone1);  
      }  
    while(time2.tv_sec < time1.tv_sec);  
   
    do  
      {  
         gettimeofday(&time2,&zone1);  
      }  
    while(time2.tv_usec < time1.tv_usec &&  
          time2.tv_sec == time1.tv_sec);  
   
 }  
   
 /* cheap ecvt replacement */  
   
 #include <math.h>  #include <math.h>
   
 #define MAXCONV 0x40  #define MAXCONV 0x40

Removed from v.1.1  
changed lines
  Added in v.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>