From 2de68bc92f721ba0113218d351be3d958980afbc Mon Sep 17 00:00:00 2001 From: "Guillem L. Jara" <4lon3ly0@tutanota.com> Date: Tue, 26 May 2026 09:33:05 +0200 Subject: [PATCH] chore: add missing file headers --- interpreter/src/types.rs | 5 +++++ interpreter/src/vm.rs | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/interpreter/src/types.rs b/interpreter/src/types.rs index 1ad71cc..379f46d 100644 --- a/interpreter/src/types.rs +++ b/interpreter/src/types.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils awk package. +// +// For the full copyright and license information, please view the LICENSE +// files that was distributed with this source code. + use std::{ borrow::Cow, fmt::Display, diff --git a/interpreter/src/vm.rs b/interpreter/src/vm.rs index d9773ad..818ccca 100644 --- a/interpreter/src/vm.rs +++ b/interpreter/src/vm.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils awk package. +// +// For the full copyright and license information, please view the LICENSE +// files that was distributed with this source code. + use std::{ fmt::{self, Display}, mem::replace,