]> pd.if.org Git - pdutils/blob - utils/false/false.c
implemented pwd
[pdutils] / utils / false / false.c
1 /*
2  * false.c - return false value
3  *
4  * Version: 2008-1.01
5  * Build:   c89 -o false false.c
6  * Source:  <http://pdcore.sourceforge.net/>
7  * Spec:    <http://www.opengroup.org/onlinepubs/9699919799/utilities/false.html>
8  *
9  * This is free and unencumbered software released into the public domain,
10  * provided "as is", without warranty of any kind, express or implied. See the
11  * file UNLICENSE and the website <http://unlicense.org> for further details.
12  */
13
14
15 #define _POSIX_SOURCE
16
17
18 int main(void)
19 {
20     return(1);
21 }