Escape backslash (in \n) in example program so that it appears

correctly in formatted output.  Now the example program can be
cut/pasted/compiled.
This commit is contained in:
gdt 2005-10-02 14:24:41 +00:00
parent a0655223fb
commit 13d60a911d
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: nl_langinfo.3,v 1.13 2004/01/24 16:58:54 wiz Exp $
.\" $NetBSD: nl_langinfo.3,v 1.14 2005/10/02 14:24:41 gdt Exp $
.\"
.\" Written by J.T. Conklin <jtc@NetBSD.org>.
.\" Public domain.
@ -117,7 +117,7 @@ int main(void)
(void)setlocale(LC_ALL, "");
ptr = nl_langinfo(D_T_FMT);
strftime(datestring, sizeof(datestring), ptr, tm);
printf("%s\n",datestring);
printf("%s\\n",datestring);
return (0);
}
.Ed