You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
including stdio.h or cstdio will result in subtle to obvious breakage:
#include<stdio.h>
#ifdef FDEV_SETUP_STREAM
namespace {
intsample_putc(char c, FILE *file)
{
(void) file; /* Not used in this function */// __uart_putc(c); /* Defined by underlying system */return c;
}
intsample_getc(FILE *file)
{
unsignedchar c = '\0';
(void) file; /* Not used in this function */// c = __uart_getc(); /* Defined by underlying system */return c;
}
FILE __stdio = FDEV_SETUP_STREAM(sample_putc,
sample_getc,
NULL,
_FDEV_SETUP_RW);
} // namespaceextern"C" {
FILE *const stdin = &__stdio; __strong_reference(stdin, stdout); __strong_reference(stdin, stderr);
}
#endif// FDEV_SETUP_STREAM
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
This should be fixed since 1.8.7: picolibc/picolibc@c4b55b0
including
stdio.h
orcstdio
will result in subtle to obvious breakage:The text was updated successfully, but these errors were encountered: