diff options
Diffstat (limited to 'src/string/memset.c')
-rw-r--r-- | src/string/memset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/memset.c b/src/string/memset.c index a009ec94..0cda3b90 100644 --- a/src/string/memset.c +++ b/src/string/memset.c @@ -21,7 +21,7 @@ void * memset(void *s, int c, size_t n) return s; } -__check_3(void *, 0, memset, void *, int, size_t) +CHECK_3(void *, 0, memset, void *, int, size_t) /*** fills the first ARGUMENT(n) bytes of memory at ARGUMENT(s) with |