summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorTylo <[email protected]>2020-06-23 12:20:29 +0200
committerTylo <[email protected]>2020-06-23 12:20:29 +0200
commit7b50efc68e9339497345522fe7ffaf0833fb3869 (patch)
treea20719de61ab6a501670b56b96c4e2736b095968 /examples
parent7eec04b0777e66eb14c0adfc14d26ed2a6b5b2b9 (diff)
downloadSTC-modified-7b50efc68e9339497345522fe7ffaf0833fb3869.tar.gz
STC-modified-7b50efc68e9339497345522fe7ffaf0833fb3869.zip
Minor stuff on crandom. and STC_INLINE
Diffstat (limited to 'examples')
-rw-r--r--examples/rngtest.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/rngtest.c b/examples/rngtest.c
index 4a39c4e6..f13306b0 100644
--- a/examples/rngtest.c
+++ b/examples/rngtest.c
@@ -55,14 +55,4 @@ int main(void)
}
difference = clock() - before;
printf("sfc64: %.02f, %zu\n", (float) difference / CLOCKS_PER_SEC, v);
-
-/*
- before = clock(); \
- v = 0;
- for (size_t i=0; i<NN; i++) {
- v += rand();
- }
- difference = clock() - before;
- printf("rand : %.02f, %zu\n", (float) difference / CLOCKS_PER_SEC, v);
-*/
} \ No newline at end of file