2 * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
6 * Replace %m by system error message.
8 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
12 static char sccsid
[] = "@(#) percent_m.c 1.1 94/12/28 17:42:37";
23 char *percent_m(obuf
, ibuf
)
31 if (*cp
== '%' && cp
[1] == 'm') {
32 strcpy(bp
, strerror(errno
));