programs: add simple false program

This commit is contained in:
Florian Fischer
2024-01-13 14:21:27 +01:00
parent ee2f95e51d
commit ebd07576fa
3 changed files with 17 additions and 0 deletions
+1
View File
@@ -1,5 +1,6 @@
# List of programs.
set(PROGRAM_LIST
false.c
nice.c
ls.c
mkdir.c
+11
View File
@@ -0,0 +1,11 @@
/// @file false.c
/// @brief
/// @copyright (c) 2024 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#include <sys/unistd.h>
int main(int argc, char **argv)
{
exit(1);
}