coco3: fix strcmp definition
authorBrett Gordon <beretta42@gmail.com>
Sun, 11 Mar 2018 04:04:25 +0000 (23:04 -0500)
committerBrett Gordon <beretta42@gmail.com>
Sun, 11 Mar 2018 04:04:25 +0000 (23:04 -0500)
Kernel/platform-coco3/libc.c

index cac2585..fe38786 100644 (file)
@@ -1,6 +1,6 @@
 #include "cpu.h"
 
-int strcmp( char *a, char *b ){
+int strcmp(const char *a, const char *b ){
     return strncmp(a, b, strlen(a));
 }