diff options
author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-08 23:36:24 +0000 |
---|---|---|
committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-08 23:36:24 +0000 |
commit | 8d71eaf731154f27c0f9162ee1cb12035bc79146 (patch) | |
tree | 98b8845a21909ca56ddcde725ea08f60b9805ee6 /gcc/fortran/intrinsic.texi | |
parent | 06f0b99c264712365d4142ee12ae9e8133b2f4c0 (diff) | |
download | gcc-8d71eaf731154f27c0f9162ee1cb12035bc79146.tar.gz |
PR fortran/32902
* intrinsic.texi (SIZEOF): Add mention to C_SIZE_T.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127307 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/intrinsic.texi')
-rw-r--r-- | gcc/fortran/intrinsic.texi | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gcc/fortran/intrinsic.texi b/gcc/fortran/intrinsic.texi index 8b9f9c2cb01..14c746b59a7 100644 --- a/gcc/fortran/intrinsic.texi +++ b/gcc/fortran/intrinsic.texi @@ -9395,11 +9395,12 @@ Intrinsic function @end multitable @item @emph{Return value}: -The return value is of type integer. Its value is the number of bytes -occupied by the argument. If the argument has the @code{POINTER} -attribute, the number of bytes of the storage area pointed to is -returned. If the argument is of a derived type with @code{POINTER} or -@code{ALLOCATABLE} components, the return value doesn't account for +The return value is of type integer and of the system-dependent kind +@var{C_SIZE_T} (from the @var{ISO_C_BINDING} module). Its value is the +number of bytes occupied by the argument. If the argument has the +@code{POINTER} attribute, the number of bytes of the storage area pointed +to is returned. If the argument is of a derived type with @code{POINTER} +or @code{ALLOCATABLE} components, the return value doesn't account for the sizes of the data pointed to by these components. @item @emph{Example}: |