diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-08-01 19:17:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-01 19:17:56 +0200 |
| commit | a00edbd52d03645366c165e860d9e0ab89caa2fc (patch) | |
| tree | 428907d4d7b7fe104f5f849e3b69eac80fedc1a4 /lib/libc/glibc/stdlib/stdlib.h | |
| parent | a2d21d63270ebb5eec0d437f7726c261455da66b (diff) | |
| parent | 675b1a15a17d796fa9e48902047c3c7b350a1d7e (diff) | |
| download | zig-a00edbd52d03645366c165e860d9e0ab89caa2fc.tar.gz zig-a00edbd52d03645366c165e860d9e0ab89caa2fc.zip | |
Merge pull request #24640 from alexrp/glibc-2.42
glibc 2.42
Diffstat (limited to 'lib/libc/glibc/stdlib/stdlib.h')
| -rw-r--r-- | lib/libc/glibc/stdlib/stdlib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libc/glibc/stdlib/stdlib.h b/lib/libc/glibc/stdlib/stdlib.h index 975f5aeb0b..cd4503c761 100644 --- a/lib/libc/glibc/stdlib/stdlib.h +++ b/lib/libc/glibc/stdlib/stdlib.h @@ -985,6 +985,12 @@ __extension__ extern long long int llabs (long long int __x) __THROW __attribute__ ((__const__)) __wur; #endif +#if __GLIBC_USE (ISOC2Y) +extern unsigned int uabs (int __x) __THROW __attribute__ ((__const__)) __wur; +extern unsigned long int ulabs (long int __x) __THROW __attribute__ ((__const__)) __wur; +__extension__ extern unsigned long long int ullabs (long long int __x) + __THROW __attribute__ ((__const__)) __wur; +#endif /* Return the `div_t', `ldiv_t' or `lldiv_t' representation of the value of NUMER over DENOM. */ |
