X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_string.h;h=60155a08121936bc17169447e89070c81fd3191a;hp=c5cf8b80493f21cd285041c402c84b0e0743a333;hb=d38e1d6edeee83bfb1e3e3c6e2367faa5055bdfe;hpb=e70e95962c26832628d586e07f9cd1a2e1852d72 diff --git a/palacios/include/palacios/vmm_string.h b/palacios/include/palacios/vmm_string.h index c5cf8b8..60155a0 100644 --- a/palacios/include/palacios/vmm_string.h +++ b/palacios/include/palacios/vmm_string.h @@ -34,7 +34,8 @@ #ifdef __V3VEE__ -#include +#include + void* memset(void* s, int c, size_t n); void* memcpy(void *dst, const void* src, size_t n); @@ -45,6 +46,7 @@ size_t strnlen(const char *s, size_t maxlen); int strcmp(const char* s1, const char* s2); int strncmp(const char* s1, const char* s2, size_t limit); char *strcat(char *s1, const char *s2); +char *strncat(char *s1, const char *s2, size_t limit); char *strcpy(char *dest, const char *src); char *strncpy(char *dest, const char *src, size_t limit); char *strdup(const char *s1); @@ -57,6 +59,7 @@ char *strpbrk(const char *s, const char *accept); double ceil(double x); + #endif // !__V3VEE__ #endif /* STRING_H */