Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.h « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 579543acaf7f76a954ece2490fb63a7be68e4077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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

#define __set_errno(x) (errno = (x))

#include <machine/sysdep.h>