diff options
| author | rin <rin@NetBSD.org> | 2022-05-29 08:09:19 +0000 |
|---|---|---|
| committer | rin <rin@NetBSD.org> | 2022-05-29 08:09:19 +0000 |
| commit | af960c4de0274802e8b865a2d99f1498f70e3d13 (patch) | |
| tree | eb10285e87be6c81a745f479a08a37c27bfe51ee /common | |
| parent | 8c9fc3a6924d320839b07d016a70241f3faf7953 (diff) | |
Fix typo; this is "and", not "add".
Diffstat (limited to 'common')
| -rw-r--r-- | common/lib/libc/atomic/atomic_and_64_nv_cas.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/lib/libc/atomic/atomic_and_64_nv_cas.c b/common/lib/libc/atomic/atomic_and_64_nv_cas.c index 0ab38ba9d25..d710130b396 100644 --- a/common/lib/libc/atomic/atomic_and_64_nv_cas.c +++ b/common/lib/libc/atomic/atomic_and_64_nv_cas.c @@ -1,4 +1,4 @@ -/* $NetBSD: atomic_and_64_nv_cas.c,v 1.7 2014/02/22 17:08:30 martin Exp $ */ +/* $NetBSD: atomic_and_64_nv_cas.c,v 1.8 2022/05/29 08:09:19 rin Exp $ */ /*- * Copyright (c) 2007 The NetBSD Foundation, Inc. @@ -50,7 +50,7 @@ atomic_and_64_nv(volatile uint64_t *addr, uint64_t val) #undef atomic_and_64_nv atomic_op_alias(atomic_and_64_nv,_atomic_and_64_nv) -crt_alias(__sync_and_and_fetch_8,_atomic_add_64_nv) +crt_alias(__sync_and_and_fetch_8,_atomic_and_64_nv) #if defined(_LP64) #undef atomic_and_ulong_nv |
