shithub: cstory

Download patch

ref: c99d38274d1b82164371a87a52890e9c9a297a2e
parent: 1bf110269c780f105df4d2f060b1f0f0c9e7b648
parent: bede1a16f55a76b37085bbbc008ef62128b1402b
author: Clownacy <Clownacy@users.noreply.github.com>
date: Tue Jun 30 18:56:07 EDT 2020

Merge pull request #132 from GabrielRavier/accurateAddStddefWhenNeeded

Add stddef.h when needed

--- a/src/BossFrog.cpp
+++ b/src/BossFrog.cpp
@@ -1,5 +1,7 @@
 #include "BossFrog.h"
 
+#include <stddef.h>
+
 #include "WindowsWrapper.h"
 
 #include "Boss.h"
--- a/src/BossIronH.cpp
+++ b/src/BossIronH.cpp
@@ -1,5 +1,7 @@
 #include "BossIronH.h"
 
+#include <stddef.h>
+
 #include "WindowsWrapper.h"
 
 #include "Boss.h"
--- a/src/BossPress.cpp
+++ b/src/BossPress.cpp
@@ -1,5 +1,7 @@
 #include "BossPress.h"
 
+#include <stddef.h>
+
 #include "WindowsWrapper.h"
 
 #include "Boss.h"
--- a/src/BossTwinD.cpp
+++ b/src/BossTwinD.cpp
@@ -1,5 +1,7 @@
 #include "BossTwinD.h"
 
+#include <stddef.h>
+
 #include "WindowsWrapper.h"
 
 #include "Boss.h"
--- a/src/BulHit.cpp
+++ b/src/BulHit.cpp
@@ -1,5 +1,7 @@
 #include "BulHit.h"
 
+#include <stddef.h>
+
 #include "Bullet.h"
 #include "Caret.h"
 #include "Game.h"
--- a/src/Bullet.cpp
+++ b/src/Bullet.cpp
@@ -1,5 +1,6 @@
 #include "Bullet.h"
 
+#include <stddef.h>
 #include <string.h>
 
 #include "WindowsWrapper.h"
--- a/src/Ending.cpp
+++ b/src/Ending.cpp
@@ -1,5 +1,6 @@
 #include "Ending.h"
 
+#include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
--- a/src/MyChar.cpp
+++ b/src/MyChar.cpp
@@ -1,5 +1,6 @@
 #include "MyChar.h"
 
+#include <stddef.h>
 #include <string.h>
 
 #include "WindowsWrapper.h"
--- a/src/MycParam.cpp
+++ b/src/MycParam.cpp
@@ -1,5 +1,6 @@
 #include "MycParam.h"
 
+#include <stddef.h>
 #include <stdio.h>
 
 #include "WindowsWrapper.h"
--- a/src/NpcAct120.cpp
+++ b/src/NpcAct120.cpp
@@ -1,5 +1,6 @@
 #include "NpcAct.h"
 
+#include <stddef.h>
 #include <stdio.h>
 
 #include "WindowsWrapper.h"
--- a/src/NpcAct240.cpp
+++ b/src/NpcAct240.cpp
@@ -1,5 +1,7 @@
 #include "NpcAct.h"
 
+#include <stddef.h>
+
 #include "WindowsWrapper.h"
 
 #include "Caret.h"
--- a/src/TextScr.cpp
+++ b/src/TextScr.cpp
@@ -1,5 +1,6 @@
 #include "TextScr.h"
 
+#include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>