summaryrefslogtreecommitdiffstats
path: root/src/include/strings.h
diff options
context:
space:
mode:
authorMichael Brown2006-08-09 00:52:16 +0200
committerMichael Brown2006-08-09 00:52:16 +0200
commiteda79ec32bdfffbacbfb2f593158617ddc8ae204 (patch)
treefe29a810be1f16002a937c446452f5520c8ae309 /src/include/strings.h
parentChanged ipv4_dump() to consume only one line. (diff)
downloadipxe-eda79ec32bdfffbacbfb2f593158617ddc8ae204.tar.gz
ipxe-eda79ec32bdfffbacbfb2f593158617ddc8ae204.tar.xz
ipxe-eda79ec32bdfffbacbfb2f593158617ddc8ae204.zip
The prototype for strcasecmp() is apparently in strings.h.
Diffstat (limited to 'src/include/strings.h')
-rw-r--r--src/include/strings.h2
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 */