ftime X
1: #include <sys/types.h> 2: #include <sys/timeb.h> 3: 4: static struct timeb gorp = { 5: 0L, 6: 0, 7: 5*60, 8: 1 9: }; 10: 11: ftime(gorpp) 12: struct timeb *gorpp; 13: { 14: *gorpp = gorp; 15: return(0); 16: }