diff options
author | Nick Clifton <nickc@redhat.com> | 2023-08-02 09:23:36 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2023-08-02 09:23:36 +0100 |
commit | 675b9d612cc59446e84e2c6d89b45500cb603a8d (patch) | |
tree | ad4ae6b4b1f1f81aceb945f15c5c12ea2b379689 /binutils/bucomm.h | |
parent | 69c37f53e20dc3e0b3c179b511ff786db6ae114e (diff) | |
download | fsf-binutils-gdb-675b9d612cc59446e84e2c6d89b45500cb603a8d.zip fsf-binutils-gdb-675b9d612cc59446e84e2c6d89b45500cb603a8d.tar.gz fsf-binutils-gdb-675b9d612cc59446e84e2c6d89b45500cb603a8d.tar.bz2 |
2.41 Release sourcesbinutils-2_41-release
Diffstat (limited to 'binutils/bucomm.h')
-rw-r--r-- | binutils/bucomm.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/binutils/bucomm.h b/binutils/bucomm.h index b708790..0c11c0b 100644 --- a/binutils/bucomm.h +++ b/binutils/bucomm.h @@ -76,6 +76,12 @@ extern void set_times (const char *, const struct stat *); extern int smart_rename (const char *, const char *, int, struct stat *, bool); + +/* In libiberty. */ +void *xmalloc (size_t); + +void *xrealloc (void *, size_t); + #if __GNUC__ >= 7 #define _mul_overflow(a, b, res) __builtin_mul_overflow (a, b, res) #else |