diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2010-12-17 16:51:59 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-01-09 17:57:37 +0100 | 
| commit | 560d424b6d7cd4205b062ad95f1b104bd4f8bcc3 (patch) | |
| tree | 5a429e36ad18a8fa2e0b026d143c38d7f3d493af /include/common.h | |
| parent | 42df1e1618f2bcae308ad193a136b72b82103bea (diff) | |
| download | olio-uboot-2014.01-560d424b6d7cd4205b062ad95f1b104bd4f8bcc3.tar.xz olio-uboot-2014.01-560d424b6d7cd4205b062ad95f1b104bd4f8bcc3.zip | |
env: re-add support for auto-completion
Currently, only basic completion is supported (no globs), but this is
what we had previously.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/include/common.h b/include/common.h index 0d1c8724a..d8c912d09 100644 --- a/include/common.h +++ b/include/common.h @@ -632,6 +632,7 @@ static inline IPaddr_t getenv_IPaddr (char *var)  /* 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/time.c */  void	udelay        (unsigned long); |