diff options
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/abort.3 | 2 | ||||
-rw-r--r-- | lib/libc/stdlib/alloca.3 | 4 | ||||
-rw-r--r-- | lib/libc/stdlib/malloc.3 | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/stdlib/abort.3 b/lib/libc/stdlib/abort.3 index 83b4e04..7be4ee6 100644 --- a/lib/libc/stdlib/abort.3 +++ b/lib/libc/stdlib/abort.3 @@ -61,7 +61,7 @@ function never returns. .Sh SEE ALSO .Xr sigaction 2 , -.Xr exit 2 +.Xr exit 3 .Sh STANDARDS The .Fn abort diff --git a/lib/libc/stdlib/alloca.3 b/lib/libc/stdlib/alloca.3 index ad5aaf69..498348c 100644 --- a/lib/libc/stdlib/alloca.3 +++ b/lib/libc/stdlib/alloca.3 @@ -59,10 +59,10 @@ If the allocation failed, a pointer is returned. .Sh SEE ALSO .Xr brk 2 , -.Xr pagesize 2 .Xr calloc 3 , +.Xr getpagesize 3 , .Xr malloc 3 , -.Xr realloc 3 , +.Xr realloc 3 .Sh BUGS The .Fn alloca diff --git a/lib/libc/stdlib/malloc.3 b/lib/libc/stdlib/malloc.3 index 9393b76..58d0ae4 100644 --- a/lib/libc/stdlib/malloc.3 +++ b/lib/libc/stdlib/malloc.3 @@ -162,9 +162,9 @@ function returns either a null pointer or a pointer to the possibly moved allocated space. .Sh SEE ALSO .Xr brk 2 , -.Xr pagesize 2 , -.Xr calloc 3 , .Xr alloca 3 , +.Xr calloc 3 , +.Xr getpagesize 3 , .Xr memory 3 .Sh STANDARDS The |