From 28981a82d08f5fb98dd7b4b62828d5fbea35f3f2 Mon Sep 17 00:00:00 2001 From: Enrico Fraccaroli Date: Tue, 19 Oct 2021 12:07:45 +0200 Subject: [PATCH] Change name to the help program. --- programs/CMakeLists.txt | 3 ++- programs/{help.c => man.c} | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) rename programs/{help.c => man.c} (98%) diff --git a/programs/CMakeLists.txt b/programs/CMakeLists.txt index 8735a32..4058baa 100644 --- a/programs/CMakeLists.txt +++ b/programs/CMakeLists.txt @@ -74,7 +74,8 @@ set(PROGRAMS ipcrm.c ipcs.c sleep.c - help.c) + man.c + ) foreach(PROGRAM ${PROGRAMS}) # Prepare the program name. string(REPLACE ".c" "" PROGRAM_NAME ${PROGRAM}) diff --git a/programs/help.c b/programs/man.c similarity index 98% rename from programs/help.c rename to programs/man.c index 2fba54f..377e2e0 100644 --- a/programs/help.c +++ b/programs/man.c @@ -1,5 +1,5 @@ /// MentOS, The Mentoring Operating system project -/// @file help.c +/// @file man.c /// @brief Shows the available commands. /// @copyright (c) 2014-2021 This file is distributed under the MIT License. /// See LICENSE.md for details.