2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 ANSI C function perror().
10 /*****************************************************************************
22 looks up the language-dependent error message string affiliated with an error
23 number and writes it, followed by a newline, to the standard error stream.
26 string - the string to prepend the error message. If NULL only the error
27 message will be printed, otherwise the error message will be
28 separated from string by a colon.
41 ******************************************************************************/
45 fputs(string
, stderr
);
49 fputs(strerror(errno
), stderr
);