Imported from ../bash-2.0.tar.gz.
This commit is contained in:
parent
726f63884d
commit
ccc6cda312
502 changed files with 91988 additions and 69123 deletions
|
@ -28,10 +28,32 @@ $SHORT_DOC :
|
|||
No effect; the command does nothing. A zero exit code is returned.
|
||||
$END
|
||||
|
||||
/* Do nothing. This command is a no-op. */
|
||||
$BUILTIN true
|
||||
$DOCNAME true_builtin
|
||||
$FUNCTION colon_builtin
|
||||
$SHORT_DOC true
|
||||
Return a successful result.
|
||||
$END
|
||||
|
||||
$BUILTIN false
|
||||
$DOCNAME false_builtin
|
||||
$FUNCTION false_builtin
|
||||
$SHORT_DOC false
|
||||
Return an unsuccessful result.
|
||||
$END
|
||||
|
||||
/* Return a successful result. */
|
||||
int
|
||||
colon_builtin (ignore)
|
||||
char *ignore;
|
||||
{
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* Return an unsuccessful result. */
|
||||
int
|
||||
false_builtin (ignore)
|
||||
char *ignore;
|
||||
{
|
||||
return (1);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue