add license headers

This commit is contained in:
Sylvestre Ledru 2024-01-16 22:29:02 +01:00
parent 0232b7ba76
commit 9737677a2d
3 changed files with 15 additions and 0 deletions
src/uu
lscpu/src
pwdx/src
renice/src

@ -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;

@ -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;

@ -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};