summaryrefslogtreecommitdiffstats
path: root/term-utils
diff options
context:
space:
mode:
Diffstat (limited to 'term-utils')
-rw-r--r--term-utils/script.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/term-utils/script.c b/term-utils/script.c
index 52c15f2e0..00285f260 100644
--- a/term-utils/script.c
+++ b/term-utils/script.c
@@ -189,7 +189,7 @@ static void __attribute__((__noreturn__)) done(struct script_control *ctl)
exit(EXIT_SUCCESS);
}
-static void fail(struct script_control *ctl)
+static void __attribute__((__noreturn__)) fail(struct script_control *ctl)
{
kill(0, SIGTERM);
done(ctl);
@@ -358,7 +358,7 @@ static void getslave(struct script_control *ctl)
ioctl(ctl->slave, TIOCSCTTY, 0);
}
-static void doshell(struct script_control *ctl)
+static void __attribute__((__noreturn__)) doshell(struct script_control *ctl)
{
char *shname;