aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_signal_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_signal_lib.h')
-rw-r--r--src/include/gnunet_signal_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_signal_lib.h b/src/include/gnunet_signal_lib.h
index e386ccc0e..1597c76d0 100644
--- a/src/include/gnunet_signal_lib.h
+++ b/src/include/gnunet_signal_lib.h
@@ -59,9 +59,8 @@ typedef void (*GNUNET_SIGNAL_Handler) (void);
59 * @param handler the function to call 59 * @param handler the function to call
60 * @return context that can be used to restore, NULL on error 60 * @return context that can be used to restore, NULL on error
61 */ 61 */
62struct GNUNET_SIGNAL_Context *GNUNET_SIGNAL_handler_install (int signal, 62struct GNUNET_SIGNAL_Context *
63 GNUNET_SIGNAL_Handler 63GNUNET_SIGNAL_handler_install (int signal, GNUNET_SIGNAL_Handler handler);
64 handler);
65 64
66/** 65/**
67 * Uninstall a previously installed signal hander. 66 * Uninstall a previously installed signal hander.
@@ -69,7 +68,8 @@ struct GNUNET_SIGNAL_Context *GNUNET_SIGNAL_handler_install (int signal,
69 * @param ctx context that was returned when the 68 * @param ctx context that was returned when the
70 * signal handler was installed 69 * signal handler was installed
71 */ 70 */
72void GNUNET_SIGNAL_handler_uninstall (struct GNUNET_SIGNAL_Context *ctx); 71void
72GNUNET_SIGNAL_handler_uninstall (struct GNUNET_SIGNAL_Context *ctx);
73 73
74 74
75#if 0 /* keep Emacsens' auto-indent happy */ 75#if 0 /* keep Emacsens' auto-indent happy */