]> pd.if.org Git - pdutils/blobdiff - utils/false/false.c
rename utils to posix
[pdutils] / utils / false / false.c
diff --git a/utils/false/false.c b/utils/false/false.c
deleted file mode 100644 (file)
index 49ed57c..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * false.c - return false value
- *
- * Version: 2008-1.01
- * Build:   c89 -o false false.c
- * Source:  <http://pdcore.sourceforge.net/>
- * Spec:    <http://www.opengroup.org/onlinepubs/9699919799/utilities/false.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(1);
-}