#include "jd_time.h" #include void main() { unsigned long time; unsigned long newtime; unsigned long origtime; int i=0; time=Get_Milliseconds(); origtime=time; while (i<1000) { newtime=Get_Milliseconds(); if (newtime>time) { printf("Milliseconds: %lu %ld\n",newtime,newtime-origtime); time=newtime; i++; } } }