diff --git a/examples/dictionary_compression.c b/examples/dictionary_compression.c index 17acec98..adcc3b4d 100644 --- a/examples/dictionary_compression.c +++ b/examples/dictionary_compression.c @@ -1,10 +1,9 @@ -/* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. +/** + * Copyright 2016-present, Yann Collet, Facebook, Inc. * All rights reserved. * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). + * This source code is licensed under the license found in the + * LICENSE-examples file in the root directory of this source tree. */ diff --git a/examples/dictionary_decompression.c b/examples/dictionary_decompression.c index 345c968c..ef739c18 100644 --- a/examples/dictionary_decompression.c +++ b/examples/dictionary_decompression.c @@ -1,10 +1,9 @@ -/* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. +/** + * Copyright 2016-present, Yann Collet, Facebook, Inc. * All rights reserved. * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). + * This source code is licensed under the license found in the + * LICENSE-examples file in the root directory of this source tree. */ diff --git a/examples/multiple_streaming_compression.c b/examples/multiple_streaming_compression.c index 7bfa133e..61699104 100644 --- a/examples/multiple_streaming_compression.c +++ b/examples/multiple_streaming_compression.c @@ -1,10 +1,9 @@ -/* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. +/** + * Copyright 2016-present, Yann Collet, Facebook, Inc. * All rights reserved. * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). + * This source code is licensed under the license found in the + * LICENSE-examples file in the root directory of this source tree. */ diff --git a/examples/simple_compression.c b/examples/simple_compression.c index 95853faa..ab113147 100644 --- a/examples/simple_compression.c +++ b/examples/simple_compression.c @@ -1,10 +1,9 @@ -/* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. +/** + * Copyright 2016-present, Yann Collet, Facebook, Inc. * All rights reserved. * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). + * This source code is licensed under the license found in the + * LICENSE-examples file in the root directory of this source tree. */ diff --git a/examples/simple_decompression.c b/examples/simple_decompression.c index 9e9fcc9e..4b7ea59e 100644 --- a/examples/simple_decompression.c +++ b/examples/simple_decompression.c @@ -1,10 +1,9 @@ -/* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. +/** + * Copyright 2016-present, Yann Collet, Facebook, Inc. * All rights reserved. * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). + * This source code is licensed under the license found in the + * LICENSE-examples file in the root directory of this source tree. */ #include // malloc, exit diff --git a/examples/streaming_compression.c b/examples/streaming_compression.c index ac7ee768..24ad15bd 100644 --- a/examples/streaming_compression.c +++ b/examples/streaming_compression.c @@ -1,10 +1,9 @@ -/* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. +/** + * Copyright 2016-present, Yann Collet, Facebook, Inc. * All rights reserved. * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). + * This source code is licensed under the license found in the + * LICENSE-examples file in the root directory of this source tree. */ diff --git a/examples/streaming_decompression.c b/examples/streaming_decompression.c index 76dd8516..bb2d8098 100644 --- a/examples/streaming_decompression.c +++ b/examples/streaming_decompression.c @@ -1,10 +1,9 @@ -/* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. +/** + * Copyright 2016-present, Yann Collet, Facebook, Inc. * All rights reserved. * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). + * This source code is licensed under the license found in the + * LICENSE-examples file in the root directory of this source tree. */ diff --git a/lib/compress/zstd_opt.h b/lib/compress/zstd_opt.h index ae24732c..4d938c80 100644 --- a/lib/compress/zstd_opt.h +++ b/lib/compress/zstd_opt.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. + * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the diff --git a/programs/platform.h b/programs/platform.h index fb2e9b17..e9629a0f 100644 --- a/programs/platform.h +++ b/programs/platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. + * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the diff --git a/programs/util.h b/programs/util.h index 7b553661..d6e1dfc2 100644 --- a/programs/util.h +++ b/programs/util.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. + * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the diff --git a/zlibWrapper/examples/zwrapbench.c b/zlibWrapper/examples/zwrapbench.c index 050c9db6..82ec47b7 100644 --- a/zlibWrapper/examples/zwrapbench.c +++ b/zlibWrapper/examples/zwrapbench.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. + * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the @@ -36,7 +36,6 @@ #endif - /*-************************************ * Constants **************************************/ diff --git a/zlibWrapper/gzcompatibility.h b/zlibWrapper/gzcompatibility.h index ac9020ac..98ddf1f1 100644 --- a/zlibWrapper/gzcompatibility.h +++ b/zlibWrapper/gzcompatibility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. + * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the diff --git a/zlibWrapper/zstd_zlibwrapper.c b/zlibWrapper/zstd_zlibwrapper.c index 272369a2..836587f2 100644 --- a/zlibWrapper/zstd_zlibwrapper.c +++ b/zlibWrapper/zstd_zlibwrapper.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. + * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the diff --git a/zlibWrapper/zstd_zlibwrapper.h b/zlibWrapper/zstd_zlibwrapper.h index f8f36800..9c923cb1 100644 --- a/zlibWrapper/zstd_zlibwrapper.h +++ b/zlibWrapper/zstd_zlibwrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. + * Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the