diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-07-10 19:35:39 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-07-10 19:35:39 +0000 |
commit | 8b3ff6e6949d2af79655be5361b743620456c453 (patch) | |
tree | 7a1008a354ef93d659b067550b323f3aa7c4d58f | |
parent | 0783d5bdfe6e2b6066c97a6a277b0fe9ca25818a (diff) |
Oops, fix man page typo.
thx Jean-Philippe Ouellet
-rw-r--r-- | share/man/man9/malloc.9 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/malloc.9 b/share/man/man9/malloc.9 index 90737b7b43c..fa0a27d32cf 100644 --- a/share/man/man9/malloc.9 +++ b/share/man/man9/malloc.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: malloc.9,v 1.53 2014/07/10 19:33:16 matthew Exp $ +.\" $OpenBSD: malloc.9,v 1.54 2014/07/10 19:35:38 matthew Exp $ .\" $NetBSD: malloc.9,v 1.2 1996/10/30 05:29:54 lukem Exp $ .\" .\" Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -42,7 +42,7 @@ .Ft void * .Fn malloc "size_t size" "int type" "int flags" .Ft void * -.Fn malloc "size_t nmemb" "size_t size" "int type" "int flags" +.Fn mallocarray "size_t nmemb" "size_t size" "int type" "int flags" .Ft void .Fn free "void *addr" "int type" .Sh DESCRIPTION |