Code

main: remove unused function sigstop()
authorMax Kellermann <max.kellermann@gmail.com>
Sun, 19 Mar 2017 10:20:39 +0000 (11:20 +0100)
committerMax Kellermann <max.kellermann@gmail.com>
Sun, 19 Mar 2017 10:20:39 +0000 (11:20 +0100)
src/main.c
src/ncmpc.h

index 47a5670cef21e810a063d487e017678ddf93b306..bc16eac8cc8b0a9ada881c2c7a44eb2dbd72de24 100644 (file)
@@ -103,14 +103,6 @@ catch_sigcont(gcc_unused int sig)
                exit(EXIT_FAILURE);
 }
 
-void
-sigstop(void)
-{
-       def_prog_mode();  /* save the tty modes */
-       endwin();         /* end curses mode temporarily */
-       kill(0, SIGSTOP); /* issue SIGSTOP */
-}
-
 static gboolean
 sigwinch_event(gcc_unused GIOChannel *source,
                gcc_unused GIOCondition condition, gcc_unused gpointer data)
index 5ac3ce5a5406e36e7564621b85c571d5ba8ac8a1..2ca79ad55b2f1e07f024743aeae312a4c20c4e4b 100644 (file)
 
 #include <stdbool.h>
 
-/** put the terminal in a sane mode and stop/suspend ncmpc */
-void
-sigstop(void);
-
 void begin_input_event(void);
 void end_input_event(void);