/* * 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); }