diff options
| author | Simon Glass <[email protected]> | 2019-11-14 12:57:19 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-12-02 18:23:08 -0500 |
| commit | 8bef79bf3c30cd1fc5367cc1f78f72e6552629e9 (patch) | |
| tree | 318647c77cc039fd2a0e8d611c2156027a3c4691 /include/common.h | |
| parent | f083583786913de7652312c137dd4fea5c2e291f (diff) | |
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 <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/common.h b/include/common.h index 97b661181b0..d17a2b2642c 100644 --- a/include/common.h +++ b/include/common.h @@ -304,11 +304,6 @@ ulong ticks2usec (unsigned long ticks); /* lib/lz4_wrapper.c */ int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn); -/* lib/qsort.c */ -void qsort(void *base, size_t nmemb, size_t size, - int(*compar)(const void *, const void *)); -int strcmp_compar(const void *, const void *); - /* lib/uuid.c */ #include <uuid.h> |
