Skip to content

Commit 18e993e

Browse files
committed
Fix missing headers globally: include <stdarg.h> and <stdio.h> in StdHeader.h for Linux GCC compatibility
1 parent 7dff50e commit 18e993e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/StdHeader.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,8 @@ typedef HWND CX88WndHandle;
179179

180180
// STL
181181

182+
#include <stdarg.h>
183+
#include <stdio.h>
182184
#include <vector>
183185
#include <list>
184186
#include <deque>

src/X88Utility.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
#include "StdHeader.h"
1010

11-
#include <stdarg.h>
12-
1311
#include "X88Utility.h"
1412

1513
#if defined(X88_ENCODE_ICONV)

0 commit comments

Comments
 (0)