Skip to content

Commit

Permalink
uucore/buf_copy: add copyright notice
Browse files Browse the repository at this point in the history
  • Loading branch information
DaringCuteSeal committed Dec 28, 2024
1 parent f6b9634 commit c2f3a76
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/uucore/src/lib/features/buf_copy/common.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.

use crate::error::UError;

/// Error types used by buffer-copying functions from the `buf_copy` module.
Expand Down
5 changes: 5 additions & 0 deletions src/uucore/src/lib/features/buf_copy/linux.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.

use nix::sys::stat::fstat;
use nix::{errno::Errno, libc::S_IFIFO};

Expand Down
5 changes: 5 additions & 0 deletions src/uucore/src/lib/features/buf_copy/other.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.

use std::io::{Read, Write};

use crate::error::UResult;
Expand Down

0 comments on commit c2f3a76

Please sign in to comment.