From 045435b803a7247a8f2b4fd98d80b1bdf41c614b Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 22 Jan 2024 21:49:07 +0100 Subject: [PATCH] add missing license headers --- bin/diffutils/main.rs | 5 +++++ lib/context-diff/src/lib.rs | 5 +++++ lib/ed-diff/src/lib.rs | 5 +++++ lib/normal-diff/src/lib.rs | 5 +++++ lib/unified-diff/src/lib.rs | 5 +++++ 5 files changed, 25 insertions(+) diff --git a/bin/diffutils/main.rs b/bin/diffutils/main.rs index e083b28..39b97a3 100644 --- a/bin/diffutils/main.rs +++ b/bin/diffutils/main.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils diffutils package. +// +// For the full copyright and license information, please view the LICENSE-* +// files that was distributed with this source code. + use crate::params::*; use std::env; diff --git a/lib/context-diff/src/lib.rs b/lib/context-diff/src/lib.rs index 033e8aa..b6348d4 100644 --- a/lib/context-diff/src/lib.rs +++ b/lib/context-diff/src/lib.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils diffutils package. +// +// For the full copyright and license information, please view the LICENSE-* +// files that was distributed with this source code. + use std::collections::VecDeque; use std::io::Write; diff --git a/lib/ed-diff/src/lib.rs b/lib/ed-diff/src/lib.rs index bc59e51..5b686bf 100644 --- a/lib/ed-diff/src/lib.rs +++ b/lib/ed-diff/src/lib.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils diffutils package. +// +// For the full copyright and license information, please view the LICENSE-* +// files that was distributed with this source code. + use std::io::Write; #[derive(Debug, PartialEq)] diff --git a/lib/normal-diff/src/lib.rs b/lib/normal-diff/src/lib.rs index f5d7cab..01d1a72 100644 --- a/lib/normal-diff/src/lib.rs +++ b/lib/normal-diff/src/lib.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils diffutils package. +// +// For the full copyright and license information, please view the LICENSE-* +// files that was distributed with this source code. + use std::io::Write; #[derive(Debug, PartialEq)] diff --git a/lib/unified-diff/src/lib.rs b/lib/unified-diff/src/lib.rs index 0caecf5..9939134 100644 --- a/lib/unified-diff/src/lib.rs +++ b/lib/unified-diff/src/lib.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils diffutils package. +// +// For the full copyright and license information, please view the LICENSE-* +// files that was distributed with this source code. + use std::collections::VecDeque; use std::io::Write;