summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/Symbol.map
Commit message (Collapse)AuthorAgeFilesLines
* Implement xlocale APIs from Darwin, mainly for use by libc++. This adds atheraven2011-11-201-0/+40
| | | | | | | | | | | | load of _l suffixed versions of various standard library functions that use the global locale, making them take an explicit locale parameter. Also adds support for per-thread locales. This work was funded by the FreeBSD Foundation. Please test any code you have that uses the C standard locale functions! Reviewed by: das (gdtoa changes) Approved by: dim (mentor)
* Add dprintf() and vdprintf() from POSIX.1-2008. Like getline(),das2009-03-041-0/+2
| | | | | | dprintf() is a simple wrapper around another function, so we may as well implement it. But also like getline(), we can't prototype it by default right now because it would break too many ports.
* - Add getdelim(), getline(), stpncpy(), strnlen(), wcsnlen(),das2009-02-281-0/+5
| | | | | | | | | | | | wcscasecmp(), and wcsncasecmp(). - Make some previously non-standard extensions visible if POSIX_VISIBLE >= 200809. - Use restrict qualifiers in stpcpy(). - Declare off_t and size_t in stdio.h. - Bump __FreeBSD_version in case the new symbols (particularly getline()) cause issues with ports. Reviewed by: standards@
* Retire the __fgetcookie(), __fgetpendout(), and __fsetfileno() accessorsjhb2008-05-051-6/+0
| | | | as we aren't hiding FILE's internals anymore.
* Add __fgetcookie(), __fgetpendout() and __fsetfileno() to the privatemarcel2008-05-041-0/+6
| | | | name space.
* Move all the xprintf-related symbols to FBSDprivate_1.0.das2007-12-181-9/+13
| | | | Discussed with: deischen, kan, phk
* Use C comments since we now preprocess these files with CPP.deischen2007-04-291-3/+5
|
* Now that libc has fcloseall(), remove _cleanup() from the listdeischen2006-04-221-1/+0
| | | | of FreeBSD private symbols.
* Add fcloseall() to libc. This removes the need to export _cleanup().deischen2006-04-221-0/+1
| | | | | | Linux also provides an fcloseall() implementation. Discussed on: arch
* Add __collate_load_error and __collate_range_cmp to the list ofdeischen2006-03-301-0/+1
| | | | | | | | | | | | | FBSDprivate locale symbols. These functions are needed by libcompat. Add _cleanup to the list of stdio FBSDprivate symbols. Some third party applications use this. This will be removed and replaced by fcloseall() once libc version is bumped. Add _res to the list of resolv symbols. Found by: portbuilder runs (thanks Kris!)
* Add symbol maps and initial symbol version definitions to libc.deischen2006-03-131-0/+144
Reviewed by: davidxu
OpenPOWER on IntegriCloud