Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update syncprintf.c from mk64 #7

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions src/libc/syncprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
#include <rmon.h>
#include <os.h>

void osSyncPrintf(const char *fmt, ...)
char *osSyncPrintf(char *arg0, const char *arg1, size_t size)
{
int ans;
va_list ap;
// these functions intentionally left blank. ifdeffed out in rom release
// This function left blank. Ifdeffed out in rom release
return (1);
}
void rmonPrintf(const char *fmt, ...)
{
int ans;
va_list ap;
va_list args;
va_start(args, fmt);
_Printf(osSyncPrintf, NULL, fmt, args);
va_end(args);
}