diff options
Diffstat (limited to 'src/strings')
-rw-r--r-- | src/strings/bzero.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strings/bzero.c b/src/strings/bzero.c index ab7a5f8..4be0948 100644 --- a/src/strings/bzero.c +++ b/src/strings/bzero.c @@ -23,7 +23,7 @@ /** * `memset`, except calls to it cannot be removed by the compiler. */ -void* (volatile *__slibc_explicit_memset)(void*, int, size_t) = memset; +void* (*volatile __slibc_explicit_memset)(void*, int, size_t) = memset; |