mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-04 10:03:47 +08:00
intrinsic.texi: (LINK) Document function form.
* intrinsic.texi: (LINK) Document function form. (RENAME): Likewise. (SYMLNK): Likewise. (SYSTEM): Likewise. (UNLINK): Likewise. From-SVN: r122728
This commit is contained in:
parent
e309748966
commit
435b0aa2df
@ -1,3 +1,11 @@
|
|||||||
|
2007-03-08 Brooks Moses <brooks.moses@codesourcery.com>
|
||||||
|
|
||||||
|
* intrinsic.texi: (LINK) Document function form.
|
||||||
|
(RENAME): Likewise.
|
||||||
|
(SYMLNK): Likewise.
|
||||||
|
(SYSTEM): Likewise.
|
||||||
|
(UNLINK): Likewise.
|
||||||
|
|
||||||
2007-03-08 Brooks Moses <brooks.moses@codesourcery.com>
|
2007-03-08 Brooks Moses <brooks.moses@codesourcery.com>
|
||||||
|
|
||||||
* intrinsic.texi: minor typo fixes, removed prologue.
|
* intrinsic.texi: minor typo fixes, removed prologue.
|
||||||
|
@ -5635,14 +5635,20 @@ names are ignored. If the @var{STATUS} argument is supplied, it
|
|||||||
contains 0 on success or a nonzero error code upon return; see
|
contains 0 on success or a nonzero error code upon return; see
|
||||||
@code{link(2)}.
|
@code{link(2)}.
|
||||||
|
|
||||||
|
This intrinsic is provided in both subroutine and function forms;
|
||||||
|
however, only one form can be used in any given program unit.
|
||||||
|
|
||||||
@item @emph{Standard}:
|
@item @emph{Standard}:
|
||||||
GNU extension
|
GNU extension
|
||||||
|
|
||||||
@item @emph{Class}:
|
@item @emph{Class}:
|
||||||
Subroutine
|
Subroutine, non-elemental function
|
||||||
|
|
||||||
@item @emph{Syntax}:
|
@item @emph{Syntax}:
|
||||||
@code{CALL LINK(PATH1, PATH2 [, STATUS])}
|
@multitable @columnfractions .80
|
||||||
|
@item @code{CALL LINK(PATH1, PATH2 [, STATUS])}
|
||||||
|
@item @code{STATUS = LINK(PATH1, PATH2)}
|
||||||
|
@end multitable
|
||||||
|
|
||||||
@item @emph{Arguments}:
|
@item @emph{Arguments}:
|
||||||
@multitable @columnfractions .15 .70
|
@multitable @columnfractions .15 .70
|
||||||
@ -7511,14 +7517,20 @@ names are ignored. If the @var{STATUS} argument is supplied, it
|
|||||||
contains 0 on success or a nonzero error code upon return; see
|
contains 0 on success or a nonzero error code upon return; see
|
||||||
@code{rename(2)}.
|
@code{rename(2)}.
|
||||||
|
|
||||||
|
This intrinsic is provided in both subroutine and function forms;
|
||||||
|
however, only one form can be used in any given program unit.
|
||||||
|
|
||||||
@item @emph{Standard}:
|
@item @emph{Standard}:
|
||||||
GNU extension
|
GNU extension
|
||||||
|
|
||||||
@item @emph{Class}:
|
@item @emph{Class}:
|
||||||
Subroutine
|
Subroutine, non-elemental function
|
||||||
|
|
||||||
@item @emph{Syntax}:
|
@item @emph{Syntax}:
|
||||||
@code{CALL RENAME(PATH1, PATH2 [, STATUS])}
|
@multitable @columnfractions .80
|
||||||
|
@item @code{CALL RENAME(PATH1, PATH2 [, STATUS])}
|
||||||
|
@item @code{STATUS = RENAME(PATH1, PATH2)}
|
||||||
|
@end multitable
|
||||||
|
|
||||||
@item @emph{Arguments}:
|
@item @emph{Arguments}:
|
||||||
@multitable @columnfractions .15 .70
|
@multitable @columnfractions .15 .70
|
||||||
@ -8519,14 +8531,20 @@ contains 0 on success or a nonzero error code upon return; see
|
|||||||
@code{symlink(2)}. If the system does not supply @code{symlink(2)},
|
@code{symlink(2)}. If the system does not supply @code{symlink(2)},
|
||||||
@code{ENOSYS} is returned.
|
@code{ENOSYS} is returned.
|
||||||
|
|
||||||
|
This intrinsic is provided in both subroutine and function forms;
|
||||||
|
however, only one form can be used in any given program unit.
|
||||||
|
|
||||||
@item @emph{Standard}:
|
@item @emph{Standard}:
|
||||||
GNU extension
|
GNU extension
|
||||||
|
|
||||||
@item @emph{Class}:
|
@item @emph{Class}:
|
||||||
Subroutine
|
Subroutine, non-elemental function
|
||||||
|
|
||||||
@item @emph{Syntax}:
|
@item @emph{Syntax}:
|
||||||
@code{CALL SYMLNK(PATH1, PATH2 [, STATUS])}
|
@multitable @columnfractions .80
|
||||||
|
@item @code{CALL SYMLNK(PATH1, PATH2 [, STATUS])}
|
||||||
|
@item @code{STATUS = SYMLNK(PATH1, PATH2)}
|
||||||
|
@end multitable
|
||||||
|
|
||||||
@item @emph{Arguments}:
|
@item @emph{Arguments}:
|
||||||
@multitable @columnfractions .15 .70
|
@multitable @columnfractions .15 .70
|
||||||
@ -8554,14 +8572,20 @@ argument @var{STATUS} is present, it contains the value returned by
|
|||||||
Note that which shell is used to invoke the command is system-dependent
|
Note that which shell is used to invoke the command is system-dependent
|
||||||
and environment-dependent.
|
and environment-dependent.
|
||||||
|
|
||||||
|
This intrinsic is provided in both subroutine and function forms;
|
||||||
|
however, only one form can be used in any given program unit.
|
||||||
|
|
||||||
@item @emph{Standard}:
|
@item @emph{Standard}:
|
||||||
GNU extension
|
GNU extension
|
||||||
|
|
||||||
@item @emph{Class}:
|
@item @emph{Class}:
|
||||||
Subroutine
|
Subroutine, non-elemental function
|
||||||
|
|
||||||
@item @emph{Syntax}:
|
@item @emph{Syntax}:
|
||||||
@code{CALL SYSTEM(COMMAND [, STATUS])}
|
@multitable @columnfractions .80
|
||||||
|
@item @code{CALL SYSTEM(COMMAND [, STATUS])}
|
||||||
|
@item @code{STATUS = SYSTEM(COMMAND)}
|
||||||
|
@end multitable
|
||||||
|
|
||||||
@item @emph{Arguments}:
|
@item @emph{Arguments}:
|
||||||
@multitable @columnfractions .15 .70
|
@multitable @columnfractions .15 .70
|
||||||
@ -9007,14 +9031,20 @@ blanks in the file name are ignored. If the @var{STATUS} argument is
|
|||||||
supplied, it contains 0 on success or a nonzero error code upon return;
|
supplied, it contains 0 on success or a nonzero error code upon return;
|
||||||
see @code{unlink(2)}.
|
see @code{unlink(2)}.
|
||||||
|
|
||||||
|
This intrinsic is provided in both subroutine and function forms;
|
||||||
|
however, only one form can be used in any given program unit.
|
||||||
|
|
||||||
@item @emph{Standard}:
|
@item @emph{Standard}:
|
||||||
GNU extension
|
GNU extension
|
||||||
|
|
||||||
@item @emph{Class}:
|
@item @emph{Class}:
|
||||||
Subroutine
|
Subroutine, non-elemental function
|
||||||
|
|
||||||
@item @emph{Syntax}:
|
@item @emph{Syntax}:
|
||||||
@code{CALL UNLINK(PATH [, STATUS])}
|
@multitable @columnfractions .80
|
||||||
|
@item @code{CALL UNLINK(PATH [, STATUS])}
|
||||||
|
@item @code{STATUS = UNLINK(PATH)}
|
||||||
|
@end multitable
|
||||||
|
|
||||||
@item @emph{Arguments}:
|
@item @emph{Arguments}:
|
||||||
@multitable @columnfractions .15 .70
|
@multitable @columnfractions .15 .70
|
||||||
|
Loading…
Reference in New Issue
Block a user