From 48e325d1489652cfc3847fe21d799ef211ef998d Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 13 Jun 2018 17:46:00 -0400 Subject: [PATCH] Clean up comments --- scheme/time.sld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scheme/time.sld b/scheme/time.sld index 33cc3c6d..a8803b2e 100644 --- a/scheme/time.sld +++ b/scheme/time.sld @@ -27,9 +27,9 @@ "(void *data, int argc, closure _, object k)" " struct timeval tv; make_double(box, 0.0); - gettimeofday(&tv, NULL); /* TODO: longer-term use clock_gettime instead */ + gettimeofday(&tv, NULL); /* TODO: longer-term consider using clock_gettime instead */ long long jiffy = (tv.tv_sec)*1000000LL + tv.tv_usec; - /* TODO: future consideration + /* Future consideration: mp_int bn_tmp, bn_tmp2, bn_tmp3; mp_init(&bn_tmp); mp_init(&bn_tmp2);