From af960c4de0274802e8b865a2d99f1498f70e3d13 Mon Sep 17 00:00:00 2001 From: rin Date: Sun, 29 May 2022 08:09:19 +0000 Subject: Fix typo; this is "and", not "add". --- common/lib/libc/atomic/atomic_and_64_nv_cas.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common') 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 -- cgit