26 lines
660 B
C
26 lines
660 B
C
static char sccsid[] = "@(#)71 1.5 src/bos/usr/bin/false/false.c, cmdsh, bos411, 9428A410j 6/15/90 23:27:56";
|
|
/*
|
|
* COMPONENT_NAME: (CMDSH) Bourne shell and related commands
|
|
*
|
|
* FUNCTIONS:
|
|
*
|
|
* ORIGINS: 27
|
|
*
|
|
* IBM CONFIDENTIAL -- (IBM Confidential Restricted when
|
|
* combined with the aggregated modules for this product)
|
|
* SOURCE MATERIALS
|
|
* (C) COPYRIGHT International Business Machines Corp. 1989
|
|
* All Rights Reserved
|
|
*
|
|
* US Government Users Restricted Rights - Use, duplication or
|
|
* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
|
|
*/
|
|
/*
|
|
* NAME: false
|
|
* FUNCTION: returns false
|
|
*/
|
|
main()
|
|
{
|
|
_exit(1);
|
|
}
|