]> git.sur5r.net Git - cc65/blobdiff - include/string.h
Merge telemon24 and telemon30 into telestrat target.
[cc65] / include / string.h
index be492667e59b549018bac917ff9b433dfb79e2c6..46095a52542ab7213a71808e988152dbd20e1486 100644 (file)
@@ -65,8 +65,8 @@ void* __fastcall__ memmove (void* dest, const void* src, size_t count);
 void* __fastcall__ memset (void* s, int c, size_t count);
 
 /* The following is an internal function, the compiler will replace memset
- * with it if the fill value is zero. Never use this one directly!
- */
+** with it if the fill value is zero. Never use this one directly!
+*/
 void* __fastcall__ _bzero (void* ptr, size_t n);
 
 /* Non standard: */