mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
19 lines
377 B
C
19 lines
377 B
C
#ifndef _MSL_COMMON_DIRECT_IO_H
|
|
#define _MSL_COMMON_DIRECT_IO_H
|
|
|
|
#include "MSL_C/ansi_files.h"
|
|
#include "stddef.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
size_t __fwrite(const void* buffer, size_t size, size_t count, FILE* stream);
|
|
size_t fwrite(const void* buffer, size_t size, size_t count, FILE* stream);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _MSL_COMMON_DIRECT_IO_H */
|