Commit 42c4a23a55fbcccaabe9e3e76b00138185209a74

Authored by Simon Glass
Committed by Wolfgang Denk
1 parent f915c9316c

Include common.h in qsort.c to fix build warning

exports.h no longer includes common.h, which contains assert(). qsort.c
needs to be updated. This fixes this warning:

qsort.c: In function 'qsort':
qsort.c:30:3: warning: implicit declaration of function 'assert' [-Wimplicit-function-declaration]

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Tested-by: Heiko Schocher <hs@denx.de>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

... ... @@ -16,6 +16,7 @@
16 16 * bcc and gcc. */
17 17  
18 18 #include <linux/types.h>
  19 +#include <common.h>
19 20 #include <exports.h>
20 21  
21 22 void qsort(void *base,