Remove "originally public domain" comments

These comments are unnecessary, and they might cause confusion since
they could be misunderstood as being part of the license.
This commit is contained in:
Eric Biggers 2021-12-31 12:14:01 -06:00
parent a62d3610f0
commit eafe829b4d
8 changed files with 0 additions and 16 deletions

View File

@ -1,8 +1,6 @@
/* /*
* bt_matchfinder.h - Lempel-Ziv matchfinding with a hash table of binary trees * bt_matchfinder.h - Lempel-Ziv matchfinding with a hash table of binary trees
* *
* Originally public domain; changes after 2016-09-07 are copyrighted.
*
* Copyright 2016 Eric Biggers * Copyright 2016 Eric Biggers
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person

View File

@ -1,8 +1,6 @@
/* /*
* deflate_compress.c - a compressor for DEFLATE * deflate_compress.c - a compressor for DEFLATE
* *
* Originally public domain; changes after 2016-09-07 are copyrighted.
*
* Copyright 2016 Eric Biggers * Copyright 2016 Eric Biggers
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person

View File

@ -1,8 +1,6 @@
/* /*
* gzip_compress.c - compress with a gzip wrapper * gzip_compress.c - compress with a gzip wrapper
* *
* Originally public domain; changes after 2016-09-07 are copyrighted.
*
* Copyright 2016 Eric Biggers * Copyright 2016 Eric Biggers
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person

View File

@ -1,8 +1,6 @@
/* /*
* gzip_decompress.c - decompress with a gzip wrapper * gzip_decompress.c - decompress with a gzip wrapper
* *
* Originally public domain; changes after 2016-09-07 are copyrighted.
*
* Copyright 2016 Eric Biggers * Copyright 2016 Eric Biggers
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person

View File

@ -1,8 +1,6 @@
/* /*
* hc_matchfinder.h - Lempel-Ziv matchfinding with a hash table of linked lists * hc_matchfinder.h - Lempel-Ziv matchfinding with a hash table of linked lists
* *
* Originally public domain; changes after 2016-09-07 are copyrighted.
*
* Copyright 2016 Eric Biggers * Copyright 2016 Eric Biggers
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person

View File

@ -1,8 +1,6 @@
/* /*
* zlib_compress.c - compress with a zlib wrapper * zlib_compress.c - compress with a zlib wrapper
* *
* Originally public domain; changes after 2016-09-07 are copyrighted.
*
* Copyright 2016 Eric Biggers * Copyright 2016 Eric Biggers
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person

View File

@ -1,8 +1,6 @@
/* /*
* zlib_decompress.c - decompress with a zlib wrapper * zlib_decompress.c - decompress with a zlib wrapper
* *
* Originally public domain; changes after 2016-09-07 are copyrighted.
*
* Copyright 2016 Eric Biggers * Copyright 2016 Eric Biggers
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person

View File

@ -1,8 +1,6 @@
/* /*
* gen_crc32_table.c - a program for CRC-32 table generation * gen_crc32_table.c - a program for CRC-32 table generation
* *
* Originally public domain; changes after 2016-09-07 are copyrighted.
*
* Copyright 2016 Eric Biggers * Copyright 2016 Eric Biggers
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person