#pragma import(__use_full_stdio)
This pragma selects an extended version of microlib that uses full standard ANSI C input and output functionality.
Note
Microlib is an alternative library to the default C library. Only use this pragma if you are using microlib.
The following exceptions apply:
feof() and ferror() always return 0 because the error and end-of-file indicators are not supported.
setvbuf() and setbuf() are guaranteed to fail because all streams are unbuffered.
This version of microlib stdio can be retargeted in the same way as the standardlib stdio functions.
See also