]> pd.if.org Git - pdutils/blobdiff - utils/true/true.c
Added implementations from pdcore
[pdutils] / utils / true / true.c
diff --git a/utils/true/true.c b/utils/true/true.c
new file mode 100644 (file)
index 0000000..23afd93
--- /dev/null
@@ -0,0 +1,21 @@
+/*
+ * 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);
+}