summaryrefslogtreecommitdiff
path: root/bsearch.c
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2014-10-26 23:33:50 -0500
committerBobby Bingham <koorogi@koorogi.info>2014-10-26 23:33:50 -0500
commit40a6ba5c0a5f544bed9c11dc30b751e05a435b1e (patch)
tree796861388460ebfe3571ebc0699c3834d6eb83cf /bsearch.c
parent1e3548b039bd6b760ca3fe716c98065735110f58 (diff)
Split helper functions into their own translation units
Diffstat (limited to 'bsearch.c')
-rw-r--r--bsearch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsearch.c b/bsearch.c
index 3c94d45..39e0711 100644
--- a/bsearch.c
+++ b/bsearch.c
@@ -1,6 +1,6 @@
#include <stddef.h>
-#include "sorters.h"
+#include "common.h"
/* If a matching element exists, returns index of one of them.
If none exists, returns index where such an element should be inserted. */