Skip to content

Commit eb76a8f

Browse files
authored
xAnim 97% (#459)
* xAnimPoolInit matched (thanks Chippy) * xAnim SingleUpdate matched * xAnim 97%
1 parent 3918d2c commit eb76a8f

File tree

4 files changed

+374
-36
lines changed

4 files changed

+374
-36
lines changed

include/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/stdio.h

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,23 @@
55
extern "C" {
66
#endif
77

8+
typedef struct _FILE
9+
{
10+
U8 pad[0x50];
11+
} FILE;
12+
13+
extern FILE __files[4];
14+
15+
#define stdin &(__files[0])
16+
#define stdout &(__files[1])
17+
#define stderr &(__files[2])
18+
819
int sprintf(char* s, const char* format, ...);
920
void printf(const char* format, ...);
21+
int fprintf(FILE* stream, const char* format, ...);
1022

1123
#ifdef __cplusplus
1224
}
1325
#endif
1426

15-
#endif
27+
#endif

0 commit comments

Comments
 (0)