summaryrefslogtreecommitdiffstats
path: root/libc/stdio/tmpnam.c
Commit message (Collapse)AuthorAgeFilesLines
* Extend __gen_tempname with mode argumentMikhail Gusarov2009-11-091-1/+1
| | | | | | | | | | sem_open(3) needs to create a temporary file in a way which can't be efficiently implemented in terms of POSIX API. Extend __gen_tempname with mode_t mode argument in order to ease sem_open implementation. Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* trim Experimentally off and uncommented hiddenBernhard Reutner-Fischer2009-09-181-1/+0
| | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL blockDenis Vlasenko2008-05-191-1/+1
| | | | | | | | | in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's.
* sync with glibc and get a nice size shrinkage in the processMike Frysinger2006-02-141-25/+30
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-1/+3
| | | | missing headers, other jump relocs removed
* Hide mostly used functionsPeter S. Mazinger2005-12-011-1/+1
|
* Remove function declartions from include/features.h, createEric Andersen2002-04-011-0/+1
| | | | | a separate header file for those, and fixup references. -Erik
* Rework __gen_tempname() to better match glibc, and add mkstemp64(),Eric Andersen2002-03-311-7/+3
| | | | | which is needed for busybox ash when using largefile support. -Erik
* Update temp file handling and use a single function to do allEric Andersen2001-04-181-50/+33
| | | | | the heavy lifting (most of the heavy lifting stolen from glibc, but reduced a bit).
* Add in tmpnam() support from David Whedon <dwhedon@gordian.com>,Eric Andersen2000-11-151-0/+68
rework include/stdio.h, and fix up the resultant damage.