summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/common/getdents.c
Commit message (Collapse)AuthorAgeFilesLines
* - fix inline keywordBernhard Reutner-Fischer2008-07-231-1/+1
|
* Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL blockDenis Vlasenko2008-05-191-2/+2
| | | | | | | | | 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.
* prepare to later remove bits/kernel_types.h from bits/types.hEric Andersen2006-12-061-0/+1
|
* Atsushi Nemoto writes: Some archs (such as mips64) do not have getdents64 ↵Mike Frysinger2006-07-051-0/+4
| | | | syscall but have getdents syscall. Define alias for it.
* Kill 2 signedness warningsPeter S. Mazinger2006-02-151-1/+1
|
* Move hidden prototypes to proper place and get rid of duplicate hiddenPeter S. Mazinger2006-02-151-5/+5
|
* we cant simply alias getdents to getdents64 as they deal with structures of ↵Mike Frysinger2006-02-151-5/+34
| | | | different sizes on 32bit hosts
* use just __getdents64 rather than either __getdents and __getdents64 when ↵Mike Frysinger2006-02-041-4/+18
| | | | possible (saves space and gives us access to d_type most of the time)
* create local prototypes to shutup warningsMike Frysinger2006-01-291-0/+1
|
* make DODEBUG=y happy, update sysdeps/common/* copyrightPeter S. Mazinger2006-01-141-19/+6
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-2/+5
| | | | missing headers, other jump relocs removed
* Convert all users of earlier hiddensPeter S. Mazinger2005-12-131-1/+1
|
* only define offsetof macro if it isnt already definedMike Frysinger2005-12-061-1/+2
|
* Kill 2 redefine warnings w/ gcc-4.xPeter S. Mazinger2005-12-011-1/+1
|
* Hide mostly used functionsPeter S. Mazinger2005-12-011-1/+1
|
* get rid of unused sysdep.h headerMike Frysinger2005-11-301-1/+0
|
* Hide more of stdio,getdents, use internal __raisePeter S. Mazinger2005-11-151-1/+1
|
* Use local copy of sysdep.hPeter S. Mazinger2005-10-251-1/+1
|
* We need to have the size of struct dirent equal to the size of struct dirent64Eric Andersen2003-02-101-5/+5
| | | | | | | so when _FILE_OFFSET_BITS=64 (such that we transparently change 32bit into 64 bit interfaces), we will not lose an unsigned char from d_name which silently becomes the d_type field instead. oops. -Erik
* Fix scandir64 to not free the wrong pieces of memory (which couldEric Andersen2003-01-281-0/+100
| | | | | | | | and did cause segfaults) by adjusting the working scandir.c to the the 64 thing. Fix up potential for mismatches between the libc and kernel dirent structures, which could also cause ugly problems. -Erik
* Remove obsolete files tell.c and getdents.cManuel Novoa III2001-06-271-119/+0
|
* Just define __kernel_off_t ourselves...Eric Andersen2000-12-231-1/+1
|
* This file violated policy and directly used kernel headers.Eric Andersen2000-12-211-5/+10
| | | | This fixes it by using our own copy of the stuct in question.
* First pass at fixing readdir by adding a getdents wrapper...Eric Andersen2000-10-301-0/+114