summaryrefslogtreecommitdiffhomepage
path: root/benchmark.c
diff options
context:
space:
mode:
authorTylo <[email protected]>2020-06-15 21:20:29 +0200
committerTylo <[email protected]>2020-06-15 21:20:29 +0200
commit2bcc2fa8f094de7a4a7d78093dfe62023499e4d8 (patch)
tree78bac1b58536221f87275e98b6c397dfe2342a6e /benchmark.c
parentd5d547b7315c9deae74ead71ef434e9f25c674f7 (diff)
downloadSTC-modified-2bcc2fa8f094de7a4a7d78093dfe62023499e4d8.tar.gz
STC-modified-2bcc2fa8f094de7a4a7d78093dfe62023499e4d8.zip
Fixed including standard include files.
Diffstat (limited to 'benchmark.c')
-rw-r--r--benchmark.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/benchmark.c b/benchmark.c
index 2222453a..c7fbc956 100644
--- a/benchmark.c
+++ b/benchmark.c
@@ -1,11 +1,11 @@
-//#include <stdlib.h>
-#include <stdio.h>
-#include <time.h>
-
+#include "stc/crandom.h"
#include "stc/cstring.h"
#include "stc/cmap.h"
-#include "stc/crandom.h"
#include "others/khash.h"
+
+#include <stdio.h>
+#include <time.h>
+
#ifdef __cplusplus
#include <unordered_map>
#include "others/bytell_hash_map.hpp"