Diff for /gforth/prim between versions 1.259 and 1.260

version 1.259, 2011/11/21 01:37:12 version 1.260, 2011/11/21 19:05:01
Line 2035  dsystem = DZERO; Line 2035  dsystem = DZERO;
   
 ntime   ( -- dtime )    gforth  ntime   ( -- dtime )    gforth
 ""Report the current time in nanoseconds since some epoch.""  ""Report the current time in nanoseconds since some epoch.""
 struct timespec t;  struct timespec time1;
 clock_gettime(CLOCK_REALTIME,&t);  clock_gettime(CLOCK_REALTIME,&time1);
 dtime = timespec2ns(&t);  dtime = timespec2ns(&time1);
   
 \+  \+
   

Removed from v.1.259  
changed lines
  Added in v.1.260


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