2 * STAT stuff that breaks Applix
9 _xstat (int vers
, const char *name
, struct stat
*buf
)
11 return __xstat (vers
, name
, buf
);
16 _fxstat (int vers
, int fd
, struct stat
*buf
)
18 return __fxstat (vers
, fd
, buf
);
23 _lxstat (int vers
, const char *name
, struct stat
*buf
)
25 return __lxstat (vers
, name
, buf
);
30 * __setjmp stuff that breaks again Applix
34 int __setjmp(jmp_buf env
)
41 * __setfpucw break several math packages that ahve not heard of
42 * the standard _FPU_SETCW() way of setting the control word for the FPU
44 #include <fpu_control.h>
45 void __setfpucw(fpu_control_t cw
)
51 /* Register FUNC to be executed by `exit'. */
53 atexit (void (*func
) (void))
55 int __cxa_atexit (void (*func
) (void *), void *arg
, void *d
);
56 return __cxa_atexit ((void (*) (void *)) func
, 0, 0);