2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
7 #include <stdio.h> /* Needed for STDERR_FILENO on Windows */
16 int SetLog(const char *c
)
19 * Redirect stderr on filedescriptor level.
20 * Redirecting on streams level does not work with Android's Bionic
22 int fd
= open(c
, O_WRONLY
|O_CREAT
|O_APPEND
, 0644);
27 if (dup2(fd
, STDERR_FILENO
) == -1)