projects
/
mes.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6ae0f4
)
mescc: Tinycc support: bcopy: Do not return void.
author
Jan Nieuwenhuizen
<janneke@gnu.org>
Sun, 17 Jun 2018 12:16:05 +0000
(14:16 +0200)
committer
Jan Nieuwenhuizen
<janneke@gnu.org>
Sun, 17 Jun 2018 12:16:05 +0000
(14:16 +0200)
* lib/m4.c (bcopy): Do not return void. Helps tcc.
lib/m4.c
patch
|
blob
|
history
diff --git
a/lib/m4.c
b/lib/m4.c
index 8ffcb152443b7ed92b9d2e67586ac0456c98573c..d37f0c15ad1f2a23bb34f0cbddd067a490f6465f 100644
(file)
--- a/
lib/m4.c
+++ b/
lib/m4.c
@@
-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