From 629719b7d5cad7fc6f2eca7ca11cb99100ed8764 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 12 Jun 2014 20:17:28 -0500 Subject: [PATCH] Place programs in examples/ in public domain --- examples/applywim.c | 3 +++ examples/capturewim.c | 3 +++ examples/compressfile.c | 3 +++ examples/decompressfile.c | 3 +++ 4 files changed, 12 insertions(+) diff --git a/examples/applywim.c b/examples/applywim.c index d6873167..824752b0 100644 --- a/examples/applywim.c +++ b/examples/applywim.c @@ -1,5 +1,8 @@ /* * applywim.c - A program to extract the first image from a WIM file. + * + * The author dedicates this file to the public domain. + * You can do whatever you want with this file. */ #include diff --git a/examples/capturewim.c b/examples/capturewim.c index e6d4c5ac..ecc6b83c 100644 --- a/examples/capturewim.c +++ b/examples/capturewim.c @@ -1,5 +1,8 @@ /* * capturewim.c - A program to capture a directory tree into a WIM file. + * + * The author dedicates this file to the public domain. + * You can do whatever you want with this file. */ #include diff --git a/examples/compressfile.c b/examples/compressfile.c index 824165db..8ee2a8ae 100644 --- a/examples/compressfile.c +++ b/examples/compressfile.c @@ -26,6 +26,9 @@ * * The compressed file format created here is simply a series of compressed * chunks. A real format would need to have checksums and other metadata. + * + * The author dedicates this file to the public domain. + * You can do whatever you want with this file. */ #define _GNU_SOURCE diff --git a/examples/decompressfile.c b/examples/decompressfile.c index 11a20f19..8e461d43 100644 --- a/examples/decompressfile.c +++ b/examples/decompressfile.c @@ -24,6 +24,9 @@ * * The compressed file format created here is simply a series of compressed * chunks. A real format would need to have checksums and other metadata. + * + * The author dedicates this file to the public domain. + * You can do whatever you want with this file. */ #define _GNU_SOURCE -- 2.43.0