diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:19 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:08 -0500 |
commit | 8bef79bf3c30cd1fc5367cc1f78f72e6552629e9 (patch) | |
tree | 318647c77cc039fd2a0e8d611c2156027a3c4691 /lib/qsort.c | |
parent | f083583786913de7652312c137dd4fea5c2e291f (diff) | |
download | u-boot-8bef79bf3c30cd1fc5367cc1f78f72e6552629e9.tar.gz u-boot-8bef79bf3c30cd1fc5367cc1f78f72e6552629e9.tar.bz2 u-boot-8bef79bf3c30cd1fc5367cc1f78f72e6552629e9.zip |
common: Move sorting functions to their own header file
These don't need to be in common.h so move them out into a new header.
Also add some missing comments.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'lib/qsort.c')
-rw-r--r-- | lib/qsort.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/qsort.c b/lib/qsort.c index 57098841f9..f63d4ef726 100644 --- a/lib/qsort.c +++ b/lib/qsort.c @@ -18,6 +18,7 @@ #include <linux/types.h> #include <common.h> #include <exports.h> +#include <sort.h> void qsort(void *base, size_t nel, |