Use bounded string functions.
The bounds add a bit of safety in avoiding memory bugs and there are
sensible bounds in the cases we have been using them.
Change-Id: I381e122f356a54e5c0f1e183e521169522bc8aa9
diff --git a/inc/hf/arch/std.h b/inc/hf/arch/std.h
index 8e9c2ed..45fd441 100644
--- a/inc/hf/arch/std.h
+++ b/inc/hf/arch/std.h
@@ -23,7 +23,7 @@
int memcmp(const void *a, const void *b, size_t n);
-int strcmp(const char *a, const char *b);
+int strncmp(const char *a, const char *b, size_t n);
#define ctz(x) __builtin_ctz(x)