mescc: Tinycc support: bcopy: Do not return void.

* lib/m4.c (bcopy): Do not return void.  Helps tcc.
This commit is contained in:
Jan Nieuwenhuizen 2018-06-17 14:16:05 +02:00
parent c6ae0f41a3
commit 2062826435
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ bcmp (void const *s1, void const *s2, size_t size)
void
bcopy (void const *src, void *dest, size_t n)
{
return memmove (dest, src, n);
memmove (dest, src, n);
}
int