home · contact · privacy
Included <stddef.h> were NULL was used.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 22 Jan 2014 12:59:28 +0000 (13:59 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 22 Jan 2014 12:59:28 +0000 (13:59 +0100)
src/client/command_db.c
src/client/draw_wins.c
src/client/keybindings.c
src/client/wincontrol.c
src/client/windows.c
src/server/init.c
src/server/io.c
src/server/map_object_actions.c
src/server/map_objects.c
src/server/run.c

index 699eb468217dacf912a03b991014a67d53fc474a..7d35582dda258abb9472dcee87ce8bd7655d7e8d 100644 (file)
@@ -1,6 +1,7 @@
 /* src/client/command_db.c */
 
 #include "command_db.h"
+#include <stddef.h> /* NULL */
 #include <stdint.h> /* uint8_t, uint32_t */
 #include <stdio.h> /* FILE */
 #include <stdlib.h> /* free() */
index 4a88038a02632d99215dd0995434f5545827868c..1df666b617f4b39413d56d66e2bd9b042aec0f32 100644 (file)
@@ -2,6 +2,7 @@
 
 #include "draw_wins.h"
 #include <ncurses.h> /* attri_t, chtype */
+#include <stddef.h> /* NULL */
 #include <stdint.h> /* uint8_t, uint16_t, uint32_t, int16_t */
 #include <stdio.h> /* for sprintf() */
 #include <stdlib.h> /* free() */
index 736353515439c83f526e235b5154880d5bc40f07..500deeca305d225128a375f9b45232fdcb26b53e 100644 (file)
@@ -2,6 +2,7 @@
 
 #include "keybindings.h"
 #include <ncurses.h> /* keycode defines, cbreak(), halfdelay(), getch() */
+#include <stddef.h> /* NULL */
 #include <stdio.h> /* FILE, sprintf(), snprintf() */
 #include <stdint.h> /* uint8_t, uint16_t, uint32_t */
 #include <stdlib.h> /* free(), atoi() */
index b241eba3d4ac271e05bfd3e38ad854503792295a..5e818badd0b3d21d473b992e27ec4504defd94dc 100644 (file)
@@ -3,6 +3,7 @@
 #include "wincontrol.h"
 #include <errno.h> /* global errno */
 #include <dirent.h> /* DIR, struct dirent, opendir(), closedir(), readdir() */
+#include <stddef.h> /* NULL */
 #include <stdint.h> /* uint8_t, uint16_t, uint32_t */
 #include <stdio.h> /* FILE */
 #include <stdlib.h> /* free(), atoi() */
index dcf450b3fecff04703bb513d256cb021f5f594d4..ff57399a50bd2f9e2805d98eebafbac16cf5071a 100644 (file)
@@ -1,6 +1,7 @@
 /* src/client/windows.c */
 
 #include "windows.h"
+#include <stddef.h> /* NULL */
 #include <stdint.h> /* uint8_t, uint16_t, uint32_t, UINT16_MAX */
 #include <stdio.h> /* sprintf() */
 #include <stdlib.h> /* free() */
index f6b56a631dfa8199642ba674c2e9ced14c1b8738..1644cee35c3f3db6e08771cb7f8295b85dcfa9c5 100644 (file)
@@ -1,6 +1,7 @@
 /* src/server/init.c */
 
 #include "init.h"
+#include <stddef.h> /* NULL */
 #include <stdint.h> /* uint32_t */
 #include <stdlib.h> /* exit(), free() */
 #include <string.h> /* atoi() */
index 10fcd90f3dca2da736f13b1fd2a9e21da93d9efc..800f539aea747e53413f13d09fdc1cee7c823015 100644 (file)
@@ -4,7 +4,7 @@
 #include <errno.h> /* global errno */
 #include <fcntl.h> /* open(), O_RDONLY, O_NONBLOCK */
 #include <limits.h> /* PIPE_BUF */
-#include <stddef.h> /* size_t */
+#include <stddef.h> /* size_t, NULL */
 #include <stdint.h> /* uint8_t, uint16_t, uint32_t */
 #include <stdio.h> /* define FILE, sprintf() */
 #include <stdlib.h> /* free() */
index 37e113c0f73617cc9f456de7d16b19f2b3477567..b77ffb9e0f808c8111d69aee6e0baf0a478affdc 100644 (file)
@@ -1,6 +1,7 @@
 /* src/server/map_object_actions.c */
 
 #include "map_object_actions.h"
+#include <stddef.h> /* NULL */
 #include <stdint.h> /* uint8_t, uint16_t */
 #include <stdio.h> /* sprintf() */
 #include <stdlib.h> /* free(), atoi() */
index b114750eef6dfcd0478c0ff35ec0dca81d66680b..648631e2723be79c8024fd85611cbee6f17ef494 100644 (file)
@@ -1,6 +1,7 @@
 /* src/server/map_objects.c */
 
 #include "map_objects.h"
+#include <stddef.h> /* NULL */
 #include <stdio.h> /* FILE typedef */
 #include <stdint.h> /* uint8_t, uint16_t */
 #include <stdlib.h> /* free(), atoi() */
index 3be073a70170654e89f4a5c6a3b0e6639eacd544..540f025cc7c1eb7792be1c35c3bd0bffe8189f67 100644 (file)
@@ -1,6 +1,7 @@
 /* src/server/run.c */
 
 #include "run.h"
+#include <stddef.h> /* NULL */
 #include <stdint.h> /* uint8_t, uint16_t, uint32_t */
 #include <stdio.h> /* FILE, sprintf() */
 #include <stdlib.h> /* free() */