summaryrefslogtreecommitdiffstats
path: root/include/exports.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-03-03 08:03:01 -0700
committerTom Rini <trini@konsulko.com>2015-03-04 14:55:04 -0500
commit905949190d4df7fc5b7c4f3e96adf219e65cad78 (patch)
treefe24d04428c8dfad404539e468f596846defdabf /include/exports.h
parentdb910353a126d84fe8dff7a694ea792f50fcfb6a (diff)
downloadblackbird-obmc-uboot-905949190d4df7fc5b7c4f3e96adf219e65cad78.tar.gz
blackbird-obmc-uboot-905949190d4df7fc5b7c4f3e96adf219e65cad78.zip
Make export interface support CONFIG_SYS_MALLOC_SIMPLE
When CONFIG_SYS_MALLOC_SIMPLE is defined, free() is a static inline. Make sure that the export interface still builds in this case. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/exports.h')
-rw-r--r--include/exports.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/exports.h b/include/exports.h
index 205affe72d..1a01e430bb 100644
--- a/include/exports.h
+++ b/include/exports.h
@@ -15,7 +15,9 @@ int printf(const char* fmt, ...);
void install_hdlr(int, interrupt_handler_t, void*);
void free_hdlr(int);
void *malloc(size_t);
+#ifndef CONFIG_SYS_MALLOC_SIMPLE
void free(void*);
+#endif
void __udelay(unsigned long);
unsigned long get_timer(unsigned long);
int vprintf(const char *, va_list);
OpenPOWER on IntegriCloud