X-Git-Url: https://pd.if.org/git/?p=pdutils;a=blobdiff_plain;f=utils%2Ffalse%2Ffalse.c;fp=utils%2Ffalse%2Ffalse.c;h=49ed57c3d534574446f7e968f4b2c191833c54e9;hp=0000000000000000000000000000000000000000;hb=4daa873acbfc240e9ecc350e74c14bbfd58fabc9;hpb=b6d847ae20c32744d508eced2be3132c3fa8c5b9 diff --git a/utils/false/false.c b/utils/false/false.c new file mode 100644 index 0000000..49ed57c --- /dev/null +++ b/utils/false/false.c @@ -0,0 +1,21 @@ +/* + * false.c - return false value + * + * Version: 2008-1.01 + * Build: c89 -o false false.c + * Source: + * Spec: + * + * This is free and unencumbered software released into the public domain, + * provided "as is", without warranty of any kind, express or implied. See the + * file UNLICENSE and the website for further details. + */ + + +#define _POSIX_SOURCE + + +int main(void) +{ + return(1); +}