summaryrefslogtreecommitdiffhomepage
path: root/misc/benchmarks
diff options
context:
space:
mode:
authorTyge Lovset <[email protected]>2023-05-19 19:06:37 +0200
committerTyge Lovset <[email protected]>2023-05-19 19:06:37 +0200
commitd629139d053fdc1ff24bc0dc1985e1a2d1a0ac47 (patch)
tree86af3209ee9f11d38cbb053ee658b0f2dae6565d /misc/benchmarks
parent424e522d6f081bb8649777a3376e1dd5913daac8 (diff)
downloadSTC-modified-d629139d053fdc1ff24bc0dc1985e1a2d1a0ac47.tar.gz
STC-modified-d629139d053fdc1ff24bc0dc1985e1a2d1a0ac47.zip
Added container equality function to docs _eq(c1, c2).
Diffstat (limited to 'misc/benchmarks')
-rw-r--r--misc/benchmarks/various/csort_bench.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/benchmarks/various/csort_bench.c b/misc/benchmarks/various/csort_bench.c
index 4d1149fc..d434693f 100644
--- a/misc/benchmarks/various/csort_bench.c
+++ b/misc/benchmarks/various/csort_bench.c
@@ -32,7 +32,7 @@ void testsort(Ints *a, int size, const char *desc) {
#elif defined QSORT
printf("qsort: "); qsort(a->data, size, sizeof *a->data, cmp_int);
#else
- printf("stc_qsort: "); Ints_sort_n(a, size);
+ printf("STC sort_n: "); Ints_sort_n(a, size);
#endif
t = clock() - t;