1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-11-15 15:21:18 +03:00
Files
glibc/stdlib/ullabs.c
Joseph Myers 096fcdc0a5 Rename uimaxabs to umaxabs (bug 33325)
The C2y function uimaxabs has been renamed to umaxabs.  Implement this
change in glibc, keeping a compat symbol under the old name, copying
the test to test the new name and changing the old test to test the
compat symbol.  Jakub has done the corresponding change to the
built-in function in GCC.

Tested for x86_64 and x86.
2025-10-28 12:15:02 +00:00

38 lines
1.2 KiB
C

/* Copyright (C) 2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <limits.h>
#include <stdlib.h>
#include <shlib-compat.h>
#undef ullabs
/* Return the absolute value of I. */
unsigned long long int
ullabs (long long int i)
{
unsigned long long int j = i;
return i < 0 ? -j : i;
}
#if ULONG_MAX == UINT_MAX
weak_alias (ullabs, umaxabs)
# if SHLIB_COMPAT (libc, GLIBC_2_42, GLIBC_2_43)
compat_symbol (libc, ullabs, uimaxabs, GLIBC_2_42);
# endif
#endif