summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/unlocked.c
Commit message (Collapse)AuthorAgeFilesLines
* Next round of stdio changes: Remove all inlining of stdio operations andjhb2008-05-021-94/+0
| | | | | | | | | | | | | | | | move the definition of the type backing FILE (struct __sFILE) into an internal header. - Remove macros to inline certain operations from stdio.h. Applications will now always call the functions instead. - Move the various foo_unlocked() functions from unlocked.c into foo.c. This lets some of the inlining macros (e.g. __sfeof()) move into foo.c. - Update a few comments. - struct __sFILE can now go back to using mbstate_t, pthread_t, and pthread_mutex_t instead of knowing about their private, backing types. MFC after: 1 month Reviewed by: kan
* Add function versions of getchar_unlocked(), getc_unlocked(),tjr2003-01-101-0/+94
putchar_unlocked(), putc_unlocked(), feof_unlocked(), ferror_unlocked(), clearerr_unlocked(), and fileno_unlocked(). The first four are required by POSIX. The rest are provided for consistency.
OpenPOWER on IntegriCloud