summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorjilles <jilles@FreeBSD.org>2009-12-24 20:55:14 +0000
committerjilles <jilles@FreeBSD.org>2009-12-24 20:55:14 +0000
commite7ce62d8acb0a14c00ffed8f498a50f8d749e2a5 (patch)
tree4547f5e8c738e8561800ad304ef9bee3b4b59ac4 /bin
parent62ca5a5574d63235ad6f14c3ae38f880dc4eaa63 (diff)
downloadFreeBSD-src-e7ce62d8acb0a14c00ffed8f498a50f8d749e2a5.zip
FreeBSD-src-e7ce62d8acb0a14c00ffed8f498a50f8d749e2a5.tar.gz
sh: Add some __dead2 to indicate functions that do not return.
Diffstat (limited to 'bin')
-rw-r--r--bin/sh/error.c2
-rw-r--r--bin/sh/error.h6
-rw-r--r--bin/sh/exec.h2
-rw-r--r--bin/sh/trap.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/bin/sh/error.c b/bin/sh/error.c
index 72061b8..3fc7101 100644
--- a/bin/sh/error.c
+++ b/bin/sh/error.c
@@ -67,7 +67,7 @@ volatile sig_atomic_t intpending;
char *commandname;
-static void exverror(int, const char *, va_list) __printf0like(2, 0);
+static void exverror(int, const char *, va_list) __printf0like(2, 0) __dead2;
/*
* Called to raise an exception. Since C doesn't include exceptions, we
diff --git a/bin/sh/error.h b/bin/sh/error.h
index 38488c2..8b64fe6 100644
--- a/bin/sh/error.h
+++ b/bin/sh/error.h
@@ -78,10 +78,10 @@ extern volatile sig_atomic_t intpending;
#define CLEAR_PENDING_INT intpending = 0
#define int_pending() intpending
-void exraise(int);
+void exraise(int) __dead2;
void onint(void);
-void error(const char *, ...) __printf0like(1, 2);
-void exerror(int, const char *, ...) __printf0like(2, 3);
+void error(const char *, ...) __printf0like(1, 2) __dead2;
+void exerror(int, const char *, ...) __printf0like(2, 3) __dead2;
/*
diff --git a/bin/sh/exec.h b/bin/sh/exec.h
index 9803a5e..200ddea 100644
--- a/bin/sh/exec.h
+++ b/bin/sh/exec.h
@@ -60,7 +60,7 @@ struct cmdentry {
extern const char *pathopt; /* set by padvance */
extern int exerrno; /* last exec error */
-void shellexec(char **, char **, const char *, int);
+void shellexec(char **, char **, const char *, int) __dead2;
char *padvance(const char **, const char *);
int hashcmd(int, char **);
void find_command(const char *, struct cmdentry *, int, const char *);
diff --git a/bin/sh/trap.h b/bin/sh/trap.h
index 672ad08..8cc05da 100644
--- a/bin/sh/trap.h
+++ b/bin/sh/trap.h
@@ -45,4 +45,4 @@ void ignoresig(int);
void onsig(int);
void dotrap(void);
void setinteractive(int);
-void exitshell(int);
+void exitshell(int) __dead2;
OpenPOWER on IntegriCloud