source: trunk/libs/newlib/src/newlib/libc/sys/linux/intl/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: 853 bytes
Line 
1#define HAVE_ICONV 1
2#define HAVE_STRING_H 1
3#define HAVE_MEMPCPY 1
4#define HAVE_STRCHR 1
5#define HAVE_STRDUP 1
6#define HAVE_MMAP 1
7#define HAVE_STRTOUL 1
8#define HAVE_ALLOCA_H 1
9#define HAVE_MALLOC_H 1
10#define HAVE_STRCASECMP 1
11#define HAVE_WEAK_SYMBOLS 1
12#define HAVE_GNU_LD 1
13#define HAVE_ELF 1
14#define __ASSUME_REALTIME_SIGNALS 1
15#define ASM_GLOBAL_DIRECTIVE .global
16
17#define TEMP_FAILURE_RETRY(expression) \
18  (__extension__                                                              \
19    ({ long int __result;                                                     \
20       do __result = (long int) (expression);                                 \
21       while (__result == -1L && errno == EINTR);                             \
22       __result; }))
23
24#define UINT32_C(c)    c ## U
25
26#include <machine/sysdep.h>
27#include <features.h>
28
29#define _LIBC 1
Note: See TracBrowser for help on using the repository browser.