Searched refs:putc_unlocked (Results 1 – 8 of 8) sorted by relevance
/picolibc-latest/newlib/libc/tinystdio/ |
D | fputc.c | 49 #undef putc_unlocked 52 __strong_reference(fputc, putc_unlocked); 55 int putc_unlocked(int c, FILE *stream) { return fputc(c, stream); } in putc_unlocked() function
|
D | stdio.h | 376 int putc_unlocked (int, FILE *); 380 #define putc_unlocked(c, f) fputc(c, f) macro
|
/picolibc-latest/newlib/libc/stdio/ |
D | putc_u.c | 70 #undef putc_unlocked 73 putc_unlocked ( in putc_unlocked() function
|
D | fputc_u.c | 37 return putc_unlocked ( ch, file); in fputc_unlocked()
|
D | putchar_u.c | 67 return putc_unlocked (c, stdout); in putchar_unlocked()
|
D | stdio.h | 516 int putc_unlocked (int, FILE *); 792 #define putchar_unlocked(x) putc_unlocked(x, stdout)
|
D | stdio.tex | 88 * Function putc_unlocked:: Write a character on a stream or file (macro)
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 18250 getchar_unlocked, putc_unlocked and putchar_unlocked.
|