diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-10-07 19:34:56 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-10-07 19:34:56 +0200 |
commit | 3c14d26c4746768f1dc63d4b7ac0278a7abe5da1 (patch) | |
tree | c62d817153ff5d92181800d348c75c36426353cd /src/util.h | |
parent | 4bbf01f38a5472e927515f7494037f1045d15f28 (diff) |
util: unify implementations of freeze()
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 618e7cf9a8..8a510ae5c1 100644 --- a/src/util.h +++ b/src/util.h @@ -356,6 +356,8 @@ char *unquote(const char *s, const char *quotes); int wait_for_terminate(pid_t pid, siginfo_t *status); int wait_for_terminate_and_warn(const char *name, pid_t pid); +_noreturn_ void freeze(void); + #define NULSTR_FOREACH(i, l) \ for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1) |