X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fstring.h;h=46095a52542ab7213a71808e988152dbd20e1486;hb=e9cbd42b18510e0de5c7f6c563a6eed643db33ff;hp=be492667e59b549018bac917ff9b433dfb79e2c6;hpb=0c08b62630402527311632ae91164deabcc60c8f;p=cc65 diff --git a/include/string.h b/include/string.h index be492667e..46095a525 100644 --- a/include/string.h +++ b/include/string.h @@ -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: */