about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-03-05 18:39:04 +0000
committerUlrich Drepper <drepper@redhat.com>2001-03-05 18:39:04 +0000
commitf4fe532057acb17a53442f0b5ae8860eaefeb5ce (patch)
treef2140066b406ec0061e4ca823c961ccc19bd07ec
parent3e90e361847a46fa7552939eed2af7bf867e034c (diff)
downloadglibc-f4fe532057acb17a53442f0b5ae8860eaefeb5ce.tar.gz
glibc-f4fe532057acb17a53442f0b5ae8860eaefeb5ce.tar.xz
glibc-f4fe532057acb17a53442f0b5ae8860eaefeb5ce.zip
Fix type of parameter for S_TYPEISMQ, S_TYPEISSEM, and S_TYPEISSHM.
-rw-r--r--manual/filesys.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/filesys.texi b/manual/filesys.texi
index ccc8d55f24..e54f63dfc5 100644
--- a/manual/filesys.texi
+++ b/manual/filesys.texi
@@ -1935,7 +1935,7 @@ the whole @code{struct stat} structure.
 
 @comment sys/stat.h
 @comment POSIX
-@deftypefn Macro int S_TYPEISMQ (struct stat @var{s})
+@deftypefn Macro int S_TYPEISMQ (struct stat *@var{s})
 If the system implement POSIX message queues as distinct objects and the
 file is a message queue object, this macro returns a non-zero value.
 In all other cases the result is zero.
@@ -1943,7 +1943,7 @@ In all other cases the result is zero.
 
 @comment sys/stat.h
 @comment POSIX
-@deftypefn Macro int S_TYPEISSEM (struct stat @var{s})
+@deftypefn Macro int S_TYPEISSEM (struct stat *@var{s})
 If the system implement POSIX semaphores as distinct objects and the
 file is a semaphore object, this macro returns a non-zero value.
 In all other cases the result is zero.
@@ -1951,7 +1951,7 @@ In all other cases the result is zero.
 
 @comment sys/stat.h
 @comment POSIX
-@deftypefn Macro int S_TYPEISSHM (struct stat @var{s})
+@deftypefn Macro int S_TYPEISSHM (struct stat *@var{s})
 If the system implement POSIX shared memory objects as distinct objects
 and the file is an shared memory object, this macro returns a non-zero
 value.  In all other cases the result is zero.