From 7c9a48b4e6d66cf4f62e7bad9e22ab06923e47ef Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Thu, 17 May 2012 13:30:09 +0200 Subject: Beginning of a VFS implemented. C++ is great. --- src/common/include/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/include/string.h') diff --git a/src/common/include/string.h b/src/common/include/string.h index e6aa86e..19e87c1 100644 --- a/src/common/include/string.h +++ b/src/common/include/string.h @@ -10,7 +10,7 @@ extern "C" { int strlen(const char *str); char *strcpy(char *dest, const char *src); -// char *strdup(const char *src); // uses malloc, that's bad +char *strdup(const char *src); // uses malloc, that's bad char *strchr(const char *str, char c); char *strcat(char *dest, const char *src); int strcmp(const char *s1, const char *s2); -- cgit v1.2.3