OSDN Git Service

Merge branch 'master' into nptl
[uclinux-h8/uClibc.git] / ldso / ldso / xtensa / dl-syscalls.h
1 /* We can't use the real errno in ldso, since it has not yet
2  * been dynamicly linked in yet. */
3 #include "sys/syscall.h"
4 extern int _dl_errno;
5 #undef __set_errno
6 #define __set_errno(X) {(_dl_errno) = (X);}
7