From: Nathan Wagner Date: Thu, 23 Apr 2015 08:48:33 +0000 (+0000) Subject: reformatted true.c X-Git-Url: https://pd.if.org/git/?p=pdutils;a=commitdiff_plain;h=5cd80baaa2b300ac0e2bded7bf9dfc7b74022ab8 reformatted true.c --- diff --git a/utils/true/true.c b/utils/true/true.c index 23afd93..061ed7e 100644 --- a/utils/true/true.c +++ b/utils/true/true.c @@ -1,21 +1,3 @@ -/* - * 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); +int main(void) { + return 0; }