mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 11:00:04 +08:00
3d966a92d3
* libc/sys/linux/config.h (__set_errno): Macro definition removed. * libc/sys/linux/fpathconf.c (__set_errno): Ditto. * libc/sys/linux/libc-internal.h (__set_errno): Ditto. * libc/sys/linux/pathconf.c (__set_errno): Ditto. * libc/sys/linux/ttyname_r.c (__set_errno): Ditto. * libc/sys/linux/sys/errno.h (__set_errno): Macro definition added.
17 lines
585 B
C
17 lines
585 B
C
#define HAVE_WEAK_SYMBOLS 1
|
|
#define HAVE_GNU_LD 1
|
|
#define HAVE_ELF 1
|
|
#define __ASSUME_REALTIME_SIGNALS 1
|
|
#define ASM_GLOBAL_DIRECTIVE .global
|
|
|
|
#define TEMP_FAILURE_RETRY(expression) \
|
|
(__extension__ \
|
|
({ long int __result; \
|
|
do __result = (long int) (expression); \
|
|
while (__result == -1L && errno == EINTR); \
|
|
__result; }))
|
|
|
|
#define UINT32_C(c) c ## U
|
|
|
|
#include <machine/sysdep.h>
|