home · contact · privacy
Client: Handle SIGWINCH on OS X systems.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 15 Apr 2014 01:53:12 +0000 (03:53 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 15 Apr 2014 01:53:12 +0000 (03:53 +0200)
TODO
src/client/main.c

diff --git a/TODO b/TODO
index 42187cd10c2686a907520ec40389dce2cf297bb5..640bbf9bf41c62d240ea6988dd9bb50a01cbe445 100644 (file)
--- a/TODO
+++ b/TODO
@@ -23,5 +23,3 @@ CLIENT:
 - enable toggling of window borders
 
 - make log scrollable
-
-- handle systems without SIGWINCH
index 5f48fa2f85c4decd615037d1e90d222e789610e8..1821e57f9205007d596f286e794cb0eba1896892 100644 (file)
@@ -1,8 +1,9 @@
 /* main.c */
 
-#define _POSIX_C_SOURCE 1 /* struct sigaction, sigaction() */
+#define _POSIX_C_SOURCE 1 /* sigaction, sigaction() */
+#define _DARWIN_C_SOURCE 1 /* SIGWINCH on OS X */
 #include <ncurses.h> /* keypad() */
-#include <signal.h> /* struct sigaction, sigaction() */
+#include <signal.h> /* SIGWINCH, sigaction, sigaction() */
 #include <stddef.h> /* NULL */
 #include <stdlib.h> /* exit() */
 #include <string.h> /* memset() */