source: trunk/libs/newlib/src/newlib/libc/sys/linux/config.h

Last change on this file was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 585 bytes
Line 
1#define HAVE_WEAK_SYMBOLS 1
2#define HAVE_GNU_LD 1
3#define HAVE_ELF 1
4#define __ASSUME_REALTIME_SIGNALS 1
5#define ASM_GLOBAL_DIRECTIVE .global
6
7#define TEMP_FAILURE_RETRY(expression) \
8  (__extension__                                                              \
9    ({ long int __result;                                                     \
10       do __result = (long int) (expression);                                 \
11       while (__result == -1L && errno == EINTR);                             \
12       __result; }))
13
14#define UINT32_C(c)    c ## U
15
16#include <machine/sysdep.h>
Note: See TracBrowser for help on using the repository browser.