diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/locale/wcstod.3 | 2 | ||||
-rw-r--r-- | lib/libc/stdlib/insque.3 | 24 |
2 files changed, 14 insertions, 12 deletions
diff --git a/lib/libc/locale/wcstod.3 b/lib/libc/locale/wcstod.3 index 4fd4e48..970dd4b 100644 --- a/lib/libc/locale/wcstod.3 +++ b/lib/libc/locale/wcstod.3 @@ -50,5 +50,5 @@ for details. .Sh STANDARDS The .Fn wcstod -function conform to +function conforms to .St -isoC-99 . diff --git a/lib/libc/stdlib/insque.3 b/lib/libc/stdlib/insque.3 index 7df48f0..53c5ee6 100644 --- a/lib/libc/stdlib/insque.3 +++ b/lib/libc/stdlib/insque.3 @@ -4,7 +4,7 @@ .\" All rights reserved. .\" .\" As long as the above copyright statement and this notice remain -.\" unchanged, you can do what ever you want with this file. +.\" unchanged, you can do what ever you want with this file. .\" .\" $FreeBSD$ .\" @@ -24,21 +24,30 @@ .Ft void .Fn remque "void *element" .Sh DESCRIPTION -.Pp The .Fn insque and .Fn remque functions encapsulate the ever-repeating task of doing insertion and -removal operations on doubly linked lists. The functions expect their +removal operations on doubly linked lists. +The functions expect their arguments to point to a structure whose first and second members are pointers to the next and previous element, respectively. The .Fn insque functions also allows the .Fa pred -argument to be a NULL pointer for the initialization of a new list's +argument to be a +.Dv NULL +pointer for the initialization of a new list's head element. +.Sh STANDARDS +The +.Fn insque +and +.Fn remque +functions conform to +.St -p1003.1-2001 . .Sh HISTORY The .Fn insque @@ -50,10 +59,3 @@ In .Fx 5.0 , they reappeared conforming to .St -p1003.1-2001 . -.Sh STANDARDS -The -.Fn insque -and -.Fn remque -functions conform to -.St -p1003.1-2001 . |