diff options
| author | Michael Brown | 2006-08-09 00:52:16 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-08-09 00:52:16 +0200 |
| commit | eda79ec32bdfffbacbfb2f593158617ddc8ae204 (patch) | |
| tree | fe29a810be1f16002a937c446452f5520c8ae309 | |
| parent | Changed ipv4_dump() to consume only one line. (diff) | |
| download | ipxe-eda79ec32bdfffbacbfb2f593158617ddc8ae204.tar.gz ipxe-eda79ec32bdfffbacbfb2f593158617ddc8ae204.tar.xz ipxe-eda79ec32bdfffbacbfb2f593158617ddc8ae204.zip | |
The prototype for strcasecmp() is apparently in strings.h.
| -rw-r--r-- | src/include/strings.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/strings.h b/src/include/strings.h index 38db90be2..36a0f3333 100644 --- a/src/include/strings.h +++ b/src/include/strings.h @@ -51,4 +51,6 @@ extern int __flsl ( long x ); #define fls( x ) \ ( __builtin_constant_p ( x ) ? __constant_fls ( x ) : __fls ( x ) ) +extern int strcasecmp ( const char *s1, const char *s2 ); + #endif /* _STRINGS_H */ |
