mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
Scheduled for removal: strnicmp() which is unused
This commit is contained in:
parent
ac2e2b82bc
commit
983bebbea3
3 changed files with 8 additions and 2 deletions
|
@ -2,6 +2,12 @@
|
||||||
Changes since U-Boot 1.1.4:
|
Changes since U-Boot 1.1.4:
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
* Scheduled for removal: strnicmp() which is unused
|
||||||
|
|
||||||
|
* Update for Intel Monahans boards:
|
||||||
|
- support for magic key detection and handling on delta board
|
||||||
|
- NAND support for zylonite board + some minor cleanup
|
||||||
|
|
||||||
* Declare load_serial_ymodem() when using CFG_CMD_LOADB.
|
* Declare load_serial_ymodem() when using CFG_CMD_LOADB.
|
||||||
Patch by Jon Loeliger, 01. May 2006
|
Patch by Jon Loeliger, 01. May 2006
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ extern int strcmp(const char *,const char *);
|
||||||
#ifndef __HAVE_ARCH_STRNCMP
|
#ifndef __HAVE_ARCH_STRNCMP
|
||||||
extern int strncmp(const char *,const char *,__kernel_size_t);
|
extern int strncmp(const char *,const char *,__kernel_size_t);
|
||||||
#endif
|
#endif
|
||||||
#ifndef __HAVE_ARCH_STRNICMP
|
#if 0 /* not used - was: #ifndef __HAVE_ARCH_STRNICMP */
|
||||||
extern int strnicmp(const char *, const char *, __kernel_size_t);
|
extern int strnicmp(const char *, const char *, __kernel_size_t);
|
||||||
#endif
|
#endif
|
||||||
#ifndef __HAVE_ARCH_STRCHR
|
#ifndef __HAVE_ARCH_STRCHR
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
|
|
||||||
|
|
||||||
#ifndef __HAVE_ARCH_STRNICMP
|
#if 0 /* not used - was: #ifndef __HAVE_ARCH_STRNICMP */
|
||||||
/**
|
/**
|
||||||
* strnicmp - Case insensitive, length-limited string comparison
|
* strnicmp - Case insensitive, length-limited string comparison
|
||||||
* @s1: One string
|
* @s1: One string
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue