mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-01 13:43:35 +08:00
51d46f733a
2002-07-25 Ulrich Drepper <drepper@redhat.com> * sysdeps/wordsize-32/divdi3.c: Define __divdi3_internal. * sysdeps/wordsize-32/lldiv.c: Make gcc use __divdi3_internal instead of __divdi3. * sysdeps/unix/sysv/linux/adjtime.c: Use __adjtimex_internal. * sysdeps/unix/sysv/linux/ntp_gettime.c: Likewise. * sysdeps/unix/sysv/linux/syscalls.list: Add __adjtimex_internal alias for adjtimex syscall. * elf/dl-minimal.c: Define __assert_fail_internal. * assert/assert.c: Likewise. * include/assert.h: Define __assert_file macro if !SHARED and not NOT_IN_libc. * iconv/Makefile: Define NOT_IN_libc for objects in standalone programs. * locale/Makefile: Likewise. * nscd/Makefile: Likewise. * catgets/Makefile: Likewise. succesful seek call. Simplify error checking.
11 lines
334 B
C
11 lines
334 B
C
#include <assert/assert.h>
|
|
|
|
extern void __assert_fail_internal (__const char *__assertion,
|
|
__const char *__file,
|
|
unsigned int __line,
|
|
__const char *__function)
|
|
__attribute__ ((__noreturn__)) attribute_hidden;
|
|
#if defined SHARED && !defined NOT_IN_libc
|
|
# define __assert_fail __assert_fail_internal
|
|
#endif
|