aboutsummaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh')
-rw-r--r--sh/Makefile4
-rw-r--r--sh/commands.c3
-rw-r--r--sh/commands.h3
-rw-r--r--sh/parser.c3
-rw-r--r--sh/parser.h3
-rw-r--r--sh/sh.c3
6 files changed, 19 insertions, 0 deletions
diff --git a/sh/Makefile b/sh/Makefile
index 5195dec..6c07f68 100644
--- a/sh/Makefile
+++ b/sh/Makefile
@@ -1,4 +1,8 @@
# SPDX-License-Identifier: GPL-3.0-or-later
+#
+# Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
+# Copyright (C) 2022 Leah Rowe <leah@libreboot.org>
+
include ../config.mk
# Commands
diff --git a/sh/commands.c b/sh/commands.c
index 79663c2..bc2e910 100644
--- a/sh/commands.c
+++ b/sh/commands.c
@@ -1,4 +1,7 @@
/* SPDX-License-Identifier: BSD-3-Clause */
+/*
+ * Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
+ */
/* POSIX Header Files */
#include <unistd.h>
#include <stdio.h>
diff --git a/sh/commands.h b/sh/commands.h
index ed0bbd8..2687255 100644
--- a/sh/commands.h
+++ b/sh/commands.h
@@ -1,4 +1,7 @@
/* SPDX-License-Identifier: BSD-3-Clause */
+/*
+ * Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
+ */
#ifndef COMMANDS_H
#define COMMANDS_H
diff --git a/sh/parser.c b/sh/parser.c
index 428f3a7..0af1fb4 100644
--- a/sh/parser.c
+++ b/sh/parser.c
@@ -1,4 +1,7 @@
/* SPDX-License-Identifier: BSD-3-Clause */
+/*
+ * Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
+ */
#define _POSIX_C_SOURCE 200809L
/* POSIX Header Files */
diff --git a/sh/parser.h b/sh/parser.h
index 9f902e0..9f1a131 100644
--- a/sh/parser.h
+++ b/sh/parser.h
@@ -1,4 +1,7 @@
/* SPDX-License-Identifier: BSD-3-Clause */
+/*
+ * Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
+ */
#ifndef PARSER_H
#define PARSER_H
diff --git a/sh/sh.c b/sh/sh.c
index 4883062..dc62e66 100644
--- a/sh/sh.c
+++ b/sh/sh.c
@@ -1,4 +1,7 @@
/* SPDX-License-Identifier: BSD-3-Clause */
+/*
+ * Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
+ */
/* Here's the POSIX specification of sh: */
/* https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html */