From 61554b35b91838557e768622beff09b0d0175efd Mon Sep 17 00:00:00 2001 From: Reid Priedhorsky Date: Wed, 11 Sep 2024 15:51:36 -0600 Subject: [PATCH] =?UTF-8?q?don=E2=80=99t=20mess=20with=20file=20copyright?= =?UTF-8?q?=20notices=20for=20now?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/ch-run.c | 2 ++ bin/ch_core.c | 2 ++ bin/ch_core.h | 4 +++- bin/ch_fuse.c | 2 ++ bin/ch_fuse.h | 2 ++ bin/ch_misc.c | 2 ++ 6 files changed, 13 insertions(+), 1 deletion(-) diff --git a/bin/ch-run.c b/bin/ch-run.c index deb975e9f..bf3c41934 100644 --- a/bin/ch-run.c +++ b/bin/ch-run.c @@ -1,3 +1,5 @@ +/* Copyright © Triad National Security, LLC, and others. */ + /* Note: This program does not bother to free memory allocations, since they are modest and the program is short-lived. */ diff --git a/bin/ch_core.c b/bin/ch_core.c index 9db3479ef..60dcd1097 100644 --- a/bin/ch_core.c +++ b/bin/ch_core.c @@ -1,3 +1,5 @@ +/* Copyright © Triad National Security, LLC, and others. */ + #define _GNU_SOURCE #include "config.h" diff --git a/bin/ch_core.h b/bin/ch_core.h index 6871e54ce..f65cfc083 100644 --- a/bin/ch_core.h +++ b/bin/ch_core.h @@ -1,4 +1,6 @@ -/* This interface contains Charliecloud's core containerization features. */ +/* Copyright © Triad National Security, LLC, and others. + + This interface contains Charliecloud's core containerization features. */ #define _GNU_SOURCE #include diff --git a/bin/ch_fuse.c b/bin/ch_fuse.c index 06a313f5b..22ac1e5ca 100644 --- a/bin/ch_fuse.c +++ b/bin/ch_fuse.c @@ -1,3 +1,5 @@ +/* Copyright © Triad National Security, LLC, and others. */ + /* Function prefixes: fuse_ libfuse; docs: https://libfuse.github.io/doxygen/globals.html diff --git a/bin/ch_fuse.h b/bin/ch_fuse.h index 166e8723e..5250ed85a 100644 --- a/bin/ch_fuse.h +++ b/bin/ch_fuse.h @@ -1,3 +1,5 @@ +/* Copyright © Triad National Security, LLC, and others. */ + #define _GNU_SOURCE /** Function prototypes **/ diff --git a/bin/ch_misc.c b/bin/ch_misc.c index 5f0cad3c6..17e9b1ea0 100644 --- a/bin/ch_misc.c +++ b/bin/ch_misc.c @@ -1,3 +1,5 @@ +/* Copyright © Triad National Security, LLC, and others. */ + #define _GNU_SOURCE #include #include