diff options
Diffstat (limited to 'newlib/libc/string/bcmp.c')
-rw-r--r-- | newlib/libc/string/bcmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/bcmp.c b/newlib/libc/string/bcmp.c index 3422377..29afe82 100644 --- a/newlib/libc/string/bcmp.c +++ b/newlib/libc/string/bcmp.c @@ -33,8 +33,8 @@ QUICKREF int _DEFUN (bcmp, (m1, m2, n), - _CONST void *m1, - _CONST void *m2, + const void *m1, + const void *m2, size_t n) { |