re PR fortran/32902 (Document integer KIND of SIZEOF())

PR fortran/32902
	* intrinsic.texi (SIZEOF): Add mention to C_SIZE_T.

From-SVN: r127307
This commit is contained in:
Francois-Xavier Coudert 2007-08-08 23:36:24 +00:00 committed by François-Xavier Coudert
parent 325217edf0
commit 88821319bd
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2007-08-09 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/32902
* intrinsic.texi (SIZEOF): Add mention to C_SIZE_T.
2007-08-06 Christopher D. Rickett <crickett@lanl.gov>
PR fortran/32732

View File

@ -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}: