diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-08-08 22:52:16 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-08-08 22:52:16 +0000 |
commit | eda79ec32bdfffbacbfb2f593158617ddc8ae204 (patch) | |
tree | fe29a810be1f16002a937c446452f5520c8ae309 /src/include/strings.h | |
parent | 409f69a08a89ed3b604c59b8b96833f26fc8f2f0 (diff) | |
download | ipxe-eda79ec32bdfffbacbfb2f593158617ddc8ae204.tar.gz |
The prototype for strcasecmp() is apparently in strings.h.
Diffstat (limited to 'src/include/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 38db90be..36a0f333 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 */ |