chiark / gitweb /
util: unify implementations of freeze()
[elogind.git] / src / util.h
index 618e7cf9a82426d649bc39022473b704bf4a765a..8a510ae5c1133c0caacf3624f555adc031f2bc39 100644 (file)
@@ -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)