diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-06-30 03:22:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-06-30 03:22:09 +0000 |
commit | d33edb75d69f655eddf2462f1098d7e605c5d3e0 (patch) | |
tree | fefc0e5e4d78f79d9ddf7a1bb979f182e4f1ec3c /lib/libc/stdio/printf.3 | |
parent | becd09d2fe5d05cb52dfd4854c9bbda94356b24c (diff) |
snprintf(3) is not non-portable (it is part of XPG4) it is just
not availalble on older systems.
Diffstat (limited to 'lib/libc/stdio/printf.3')
-rw-r--r-- | lib/libc/stdio/printf.3 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3 index 319a4fdc89f..7786746a339 100644 --- a/lib/libc/stdio/printf.3 +++ b/lib/libc/stdio/printf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: printf.3,v 1.3 1996/09/29 01:26:17 michaels Exp $ +.\" $OpenBSD: printf.3,v 1.4 1997/06/30 03:22:08 millert Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -650,4 +650,5 @@ this is often impossible to assure. For safety, programmers should use the .Fn snprintf interface instead. -Unfortunately, this interface is not portable. +Unfortunately, this interface is not available on older +systems. |