diff options
author | burley <burley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-12 20:56:21 +0000 |
---|---|---|
committer | burley <burley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-12 20:56:21 +0000 |
commit | 441c368ea4b1f5f585064d5380b78471a064af48 (patch) | |
tree | 04484184c6c31ee818b4fa14280584e03c6e1646 /gcc/f/intdoc.texi | |
parent | 8de1e33ce736fc8fc046089e4341a51b344566d3 (diff) | |
download | gcc-441c368ea4b1f5f585064d5380b78471a064af48.tar.gz |
update derived files
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26911 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/f/intdoc.texi')
-rw-r--r-- | gcc/f/intdoc.texi | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gcc/f/intdoc.texi b/gcc/f/intdoc.texi index 817124e0a1e..a34f700570d 100644 --- a/gcc/f/intdoc.texi +++ b/gcc/f/intdoc.texi @@ -2709,14 +2709,14 @@ to one type for @var{X}. @noindent @example -CALL CTime(@var{Result}, @var{STime}) +CALL CTime(@var{STime}, @var{Result}) @end example @noindent -@var{Result}: @code{CHARACTER}; scalar; INTENT(OUT). +@var{STime}: @code{INTEGER}; scalar; INTENT(IN). @noindent -@var{STime}: @code{INTEGER}; scalar; INTENT(IN). +@var{Result}: @code{CHARACTER}; scalar; INTENT(OUT). @noindent Intrinsic groups: @code{unix}. @@ -4120,14 +4120,14 @@ to one type for @var{X}. @noindent @example -CALL DTime(@var{Result}, @var{TArray}) +CALL DTime(@var{TArray}, @var{Result}) @end example @noindent -@var{Result}: @code{REAL(KIND=1)}; scalar; INTENT(OUT). +@var{TArray}: @code{REAL(KIND=1)}; DIMENSION(2); INTENT(OUT). @noindent -@var{TArray}: @code{REAL(KIND=1)}; DIMENSION(2); INTENT(OUT). +@var{Result}: @code{REAL(KIND=1)}; scalar; INTENT(OUT). @noindent Intrinsic groups: @code{unix}. @@ -4294,14 +4294,14 @@ See @code{erfc(3m)}, which provides the implementation. @noindent @example -CALL ETime(@var{Result}, @var{TArray}) +CALL ETime(@var{TArray}, @var{Result}) @end example @noindent -@var{Result}: @code{REAL(KIND=1)}; scalar; INTENT(OUT). +@var{TArray}: @code{REAL(KIND=1)}; DIMENSION(2); INTENT(OUT). @noindent -@var{TArray}: @code{REAL(KIND=1)}; DIMENSION(2); INTENT(OUT). +@var{Result}: @code{REAL(KIND=1)}; scalar; INTENT(OUT). @noindent Intrinsic groups: @code{unix}. @@ -10495,14 +10495,14 @@ external procedure. @noindent @example -CALL TtyNam(@var{Name}, @var{Unit}) +CALL TtyNam(@var{Unit}, @var{Name}) @end example @noindent -@var{Name}: @code{CHARACTER}; scalar; INTENT(OUT). +@var{Unit}: @code{INTEGER}; scalar; INTENT(IN). @noindent -@var{Unit}: @code{INTEGER}; scalar; INTENT(IN). +@var{Name}: @code{CHARACTER}; scalar; INTENT(OUT). @noindent Intrinsic groups: @code{unix}. @@ -10511,7 +10511,7 @@ Intrinsic groups: @code{unix}. Description: Sets @var{Name} to the name of the terminal device open on logical unit -@var{Unit} or a blank string if @var{Unit} is not connected to a +@var{Unit} or to a blank string if @var{Unit} is not connected to a terminal. Some non-GNU implementations of Fortran provide this intrinsic as |