X-Git-Url: https://pd.if.org/git/?p=pdutils;a=blobdiff_plain;f=utils%2Ftrue%2Ftrue.c;fp=utils%2Ftrue%2Ftrue.c;h=23afd934a18240ee7a91643a1e57bf89e643683b;hp=0000000000000000000000000000000000000000;hb=4daa873acbfc240e9ecc350e74c14bbfd58fabc9;hpb=b6d847ae20c32744d508eced2be3132c3fa8c5b9 diff --git a/utils/true/true.c b/utils/true/true.c new file mode 100644 index 0000000..23afd93 --- /dev/null +++ b/utils/true/true.c @@ -0,0 +1,21 @@ +/* + * true.c - return true value + * + * Version: 2008-1.01 + * Build: c89 -o true true.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(0); +}