2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
11 /*****************************************************************************
23 looks up the language-dependent error message string affiliated with an error
24 number and writes it, followed by a newline, to the standard error stream.
27 string - the string to prepend the error message. If NULL only the error
28 message will be printed, otherwise the error message will be
29 separated from string by a colon.
42 ******************************************************************************/
46 fputs(string
, stderr
);
50 fputs(__posixc_strerror(errno
), stderr
);