From 5a5a3a3234bc220a5192d620e0cbc5360da46f14 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Tue, 24 Mar 2020 15:40:36 -0300 Subject: [PATCH] support/shell-container.c: Add builtin exit Reviewed-by: DJ Delorie --- support/shell-container.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/support/shell-container.c b/support/shell-container.c index d1112d4009..2f7405dc5f 100644 --- a/support/shell-container.c +++ b/support/shell-container.c @@ -135,6 +135,18 @@ copy_func (char **argv) } +/* Emulate the 'exit' builtin. The exit value is optional. */ +static int +exit_func (char **argv) +{ + int exit_val = 0; + + if (argv[0] != 0) + exit_val = atoi (argv[0]) & 0xff; + exit (exit_val); + return 0; +} + /* This is a list of all the built-in commands we understand. */ static struct { const char *name; @@ -143,6 +155,7 @@ static struct { { "true", true_func }, { "echo", echo_func }, { "cp", copy_func }, + { "exit", exit_func }, { NULL, NULL } };