]> pd.if.org Git - pdutils/commitdiff
reformatted true.c
authorNathan Wagner <nw@hydaspes.if.org>
Thu, 23 Apr 2015 08:48:33 +0000 (08:48 +0000)
committerNathan Wagner <nw@hydaspes.if.org>
Thu, 30 Apr 2015 02:27:02 +0000 (02:27 +0000)
utils/true/true.c

index 23afd934a18240ee7a91643a1e57bf89e643683b..061ed7eefd8af6f58434de4e2c9fec463f6bf076 100644 (file)
@@ -1,21 +1,3 @@
-/*
- * true.c - return true value
- *
- * Version: 2008-1.01
- * Build:   c89 -o true true.c
- * Source:  <http://pdcore.sourceforge.net/>
- * Spec:    <http://www.opengroup.org/onlinepubs/9699919799/utilities/true.html>
- *
- * 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 <http://unlicense.org> for further details.
- */
-
-
-#define _POSIX_SOURCE
-
-
-int main(void)
-{
-    return(0);
+int main(void) {
+       return 0;
 }