Skip to content

Commit b7389ca

Browse files
committed
remove stdio from external includes
including stdio may cause build issues in some cases
1 parent 25f6907 commit b7389ca

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/msym_error.c

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
//
1010

1111
#include <stdarg.h>
12+
#include <stdio.h>
1213
#include "msym_error.h"
1314

1415

src/msym_error.h

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
extern "C" {
1616
#endif
1717

18-
#include <stdio.h>
19-
2018
enum _msym_error {
2119
MSYM_SUCCESS = 0,
2220
MSYM_INVALID_INPUT = -1,

0 commit comments

Comments
 (0)