From 9737677a2d55bec02ebddeee4651ccc1ee2a4e15 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru <sylvestre@debian.org> Date: Tue, 16 Jan 2024 22:29:02 +0100 Subject: [PATCH] add license headers --- src/uu/lscpu/src/lscpu.rs | 5 +++++ src/uu/pwdx/src/pwdx.rs | 5 +++++ src/uu/renice/src/renice.rs | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/src/uu/lscpu/src/lscpu.rs b/src/uu/lscpu/src/lscpu.rs index c08ad7c..cb506e3 100644 --- a/src/uu/lscpu/src/lscpu.rs +++ b/src/uu/lscpu/src/lscpu.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils util-linux package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + use regex::Regex; use std::fs; use sysinfo::System; diff --git a/src/uu/pwdx/src/pwdx.rs b/src/uu/pwdx/src/pwdx.rs index 872f2b2..ce24f33 100644 --- a/src/uu/pwdx/src/pwdx.rs +++ b/src/uu/pwdx/src/pwdx.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils util-linux package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + use std::env; use std::fs; use std::path::Path; diff --git a/src/uu/renice/src/renice.rs b/src/uu/renice/src/renice.rs index 9c1bd79..1a6f0e5 100644 --- a/src/uu/renice/src/renice.rs +++ b/src/uu/renice/src/renice.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils util-linux package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + use libc::{c_char, c_int, execvp, PRIO_PROCESS}; use std::env; use std::io::{Error, Write};