diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2014-10-26 23:33:50 -0500 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2014-10-26 23:33:50 -0500 |
commit | 40a6ba5c0a5f544bed9c11dc30b751e05a435b1e (patch) | |
tree | 796861388460ebfe3571ebc0699c3834d6eb83cf /bsearch.c | |
parent | 1e3548b039bd6b760ca3fe716c98065735110f58 (diff) |
Split helper functions into their own translation units
Diffstat (limited to 'bsearch.c')
-rw-r--r-- | bsearch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. */ |