freebsd-dev/lib/libc/gen
Yaroslav Tykhiy 48aaad5fbc Our fts(3) API, as inherited from 4.4BSD, suffers from integer
fields in FTS and FTSENT structs being too narrow.  In addition,
the narrow types creep from there into fts.c.  As a result, fts(3)
consumers, e.g., find(1) or rm(1), can't handle file trees an ordinary
user can create, which can have security implications.

To fix the historic implementation of fts(3), OpenBSD and NetBSD
have already changed <fts.h> in somewhat incompatible ways, so we
are free to do so, too.  This change is a superset of changes from
the other BSDs with a few more improvements.  It doesn't touch
fts(3) functionality; it just extends integer types used by it to
match modern reality and the C standard.

Here are its points:

o For C object sizes, use size_t unless it's 100% certain that
  the object will be really small.  (Note that fts(3) can construct
  pathnames _much_ longer than PATH_MAX for its consumers.)

o Avoid the short types because on modern platforms using them
  results in larger and slower code.  Change shorts to ints as
  follows:

	- For variables than count simple, limited things like states,
	  use plain vanilla `int' as it's the type of choice in C.

	- For a limited number of bit flags use `unsigned' because signed
	  bit-wise operations are implementation-defined, i.e., unportable,
	  in C.

o For things that should be at least 64 bits wide, use long long
  and not int64_t, as the latter is an optional type.  See
  FTSENT.fts_number aka FTS.fts_bignum.  Extending fts_number `to
  satisfy future needs' is pointless because there is fts_pointer,
  which can be used to link to arbitrary data from an FTSENT.
  However, there already are fts(3) consumers that require fts_number,
  or fts_bignum, have at least 64 bits in it, so we must allow for them.

o For the tree depth, use `long'.  This is a trade-off between making
  this field too wide and allowing for 64-bit inode numbers and/or
  chain-mounted filesystems.  On the one hand, `long' is almost
  enough for 32-bit filesystems on a 32-bit platform (our ino_t is
  uint32_t now).  On the other hand, platforms with a 64-bit (or
  wider) `long' will be ready for 64-bit inode numbers, as well as
  for several 32-bit filesystems mounted one under another.  Note
  that fts_level has to be signed because -1 is a magic value for it,
  FTS_ROOTPARENTLEVEL.

o For the `nlinks' local var in fts_build(), use `long'.  The logic
  in fts_build() requires that `nlinks' be signed, but our nlink_t
  currently is uint16_t.  Therefore let's make the signed var wide
  enough to be able to represent 2^16-1 in pure C99, and even 2^32-1
  on a 64-bit platform.  Perhaps the logic should be changed just
  to use nlink_t, but it can be done later w/o breaking fts(3) ABI
  any more because `nlinks' is just a local var.

This commit also inludes supporting stuff for the fts change:

o Preserve the old versions of fts(3) functions through libc symbol
versioning because the old versions appeared in all our former releases.

o Bump __FreeBSD_version just in case.  There is a small chance that
some ill-written 3-rd party apps may fail to build or work correctly
if compiled after this change.

o Update the fts(3) manpage accordingly.  In particular, remove
references to fts_bignum, which was a FreeBSD-specific hack to work
around the too narrow types of FTSENT members.  Now fts_number is
at least 64 bits wide (long long) and fts_bignum is an undocumented
alias for fts_number kept around for compatibility reasons.  According
to Google Code Search, the only big consumers of fts_bignum are in
our own source tree, so they can be fixed easily to use fts_number.

o Mention the change in src/UPDATING.

PR:		bin/104458
Approved by:	re (quite a while ago)
Discussed with:	deischen (the symbol versioning part)
Reviewed by:	-arch (mostly silence); das (generally OK, but we didn't
		agree on some types used; assuming that no objections on
		-arch let me to stick to my opinion)
2008-01-26 17:09:40 +00:00
..
__getosreldate.c Change the C wrappers for mmap/lseek/pread/pwrite/truncate/ftruncate to 2007-07-04 23:27:38 +00:00
__xuname.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
_pthread_stubs.c Add some more pthread stubs so that librt can use them. 2006-03-05 18:10:28 +00:00
_rand48.c
_spinlock_stub.c Remove 3rd clause, renumber, ok per email 2007-01-12 07:31:30 +00:00
_thread_init.c
alarm.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
alarm.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
arc4random.3 The upper end of the range of arc4random(3) is 2**32-1, not 2**31-1. 2003-07-31 06:18:24 +00:00
arc4random.c ANSIfy function definitions, reduces diff against OpenBSD. 2007-05-25 10:40:33 +00:00
assert.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
basename.3 More accurately document the implementation details of internal storage. 2006-10-12 14:31:17 +00:00
basename.c Fix LP64 architectures and especially ia64. Functions that return 2002-12-30 01:41:14 +00:00
check_utility_compat.3 Sort sections. 2005-01-20 09:17:07 +00:00
check_utility_compat.c Back out the `hiding' of strlcpy and strlcat. Several people 2003-05-01 19:03:14 +00:00
clock.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
clock.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
closedir.c Since jb@ fixed the type of dd_lock in <dirent.h>, these casts are no 2007-12-03 14:33:51 +00:00
confstr.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
confstr.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
crypt.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
ctermid.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
ctermid.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
daemon.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
daemon.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
devname.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
devname.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
directory.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
dirname.3 More accurately document the implementation details of internal storage. 2006-10-12 14:31:17 +00:00
dirname.c Fix LP64 architectures and especially ia64. Functions that return 2002-12-30 01:41:14 +00:00
disklabel.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
dladdr.3 Mechanically kill hard sentence breaks. 2004-07-02 23:52:20 +00:00
dlfcn.c Add stub for dl_iterate_phdr. 2007-04-03 18:35:20 +00:00
dlfunc.c
dlinfo.3 Sort sections. 2005-01-20 09:17:07 +00:00
dllockinit.3 Mechanically kill hard sentence breaks. 2004-07-02 23:52:20 +00:00
dlopen.3 Fix the ordering in the description of the dlsym() lookup procedure to 2004-06-03 10:13:26 +00:00
drand48.c
erand48.c
err.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
err.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
errlst.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
errno.c
exec.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
exec.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
feature_present.3 Add a feature_present(3) function which checks to see if a named kernel 2008-01-10 22:11:21 +00:00
feature_present.c Add a feature_present(3) function which checks to see if a named kernel 2008-01-10 22:11:21 +00:00
fmtcheck.3 Mechanically kill hard sentence breaks. 2004-07-02 23:52:20 +00:00
fmtcheck.c Teach fmtcheck() about the ' (thousands separator) flag. 2005-03-21 08:00:55 +00:00
fmtmsg.3
fmtmsg.c Back out the `hiding' of strlcpy and strlcat. Several people 2003-05-01 19:03:14 +00:00
fnmatch.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
fnmatch.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
fpclassify.3 - Move the functions presently described in in ieee(3) to their own 2005-01-27 05:46:17 +00:00
fpclassify.c Update my email address. 2005-02-06 03:23:31 +00:00
frexp.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
frexp.c Replace seven nominally MD implementations of frexp() that are broken 2004-07-18 21:23:39 +00:00
fstab.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
ftok.3 Mechanically kill hard sentence breaks. 2004-07-02 23:52:20 +00:00
ftok.c Change the signature of ftok from (const char *, char) to (const char *, int) 2004-06-01 06:53:07 +00:00
fts-compat.c Our fts(3) API, as inherited from 4.4BSD, suffers from integer 2008-01-26 17:09:40 +00:00
fts-compat.h Our fts(3) API, as inherited from 4.4BSD, suffers from integer 2008-01-26 17:09:40 +00:00
fts.3 Our fts(3) API, as inherited from 4.4BSD, suffers from integer 2008-01-26 17:09:40 +00:00
fts.c Our fts(3) API, as inherited from 4.4BSD, suffers from integer 2008-01-26 17:09:40 +00:00
ftw.3 Make SYNOPSIS compile. 2005-11-23 15:41:36 +00:00
ftw.c Replace the current implementations of ftw() and nftw() with the OpenBSD 2004-08-24 13:00:55 +00:00
getbootfile.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getbootfile.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getbsize.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getbsize.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getcap.3 o s/cgetseq/cgetset/ 2007-02-11 18:14:49 +00:00
getcap.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getcontext.3 Fix description: the argument to setcontext(3) must have been previously 2004-12-03 14:10:04 +00:00
getcwd.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getcwd.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getdiskbyname.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getdomainname.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getdomainname.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getfsent.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getgrent.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getgrent.c Implementing 'fallback' nsswitch source. 'fallback' source is used 2007-12-12 10:08:03 +00:00
getgrouplist.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getgrouplist.c Implementing 'fallback' nsswitch source. 'fallback' source is used 2007-12-12 10:08:03 +00:00
gethostname.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
gethostname.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getloadavg.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getloadavg.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getlogin.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getmntinfo.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getmntinfo.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getnetgrent.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getnetgrent.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getosreldate.3 Switch BUILD_ARCH in Makefile to use uname -p suggested by ru. 2005-12-03 05:11:07 +00:00
getosreldate.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getpagesize.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getpagesize.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getpass.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getpeereid.3
getpeereid.c
getprogname.3
getprogname.c
getpwent.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getpwent.c - Extend the nsswitch to support Services, Protocols and Rpc 2006-04-28 12:03:38 +00:00
getttyent.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getttyent.c In getttyent(3), if /etc/ttys doesn't end in a newline, don't 2008-01-15 06:50:50 +00:00
getusershell.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getusershell.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
getvfsbyname.3 Bump date. 2007-04-05 21:17:52 +00:00
getvfsbyname.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
glob.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
glob.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
initgroups.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
initgroups.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
isatty.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
isgreater.3 Update my email address. 2005-02-06 03:23:31 +00:00
isinf.c Unbreak alpha: On alpha a long double is the same as a double and 2004-07-10 15:52:26 +00:00
isnan.c Remove __isnanl() to avoid conflicting with the same function in libm. 2004-09-24 06:33:22 +00:00
jrand48.c
lcong48.c
ldexp.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
ldexp.c Replace the ldexp() implementation in libc with a renamed copy of the 2005-01-22 06:03:40 +00:00
lockf.3 Mechanically kill hard sentence breaks. 2004-07-02 23:52:20 +00:00
lockf.c
lrand48.c
makecontext.3
Makefile.inc Our fts(3) API, as inherited from 4.4BSD, suffers from integer 2008-01-26 17:09:40 +00:00
modf.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
mrand48.c
msgctl.3 o It speaks about struct msqid_ds not struct shmid_ds. 2006-08-09 18:05:44 +00:00
msgget.3
msgrcv.3 When IPC_NOWAIT is set and there is no message, msgrcv() fails 2005-06-14 10:56:02 +00:00
msgsnd.3 Document what "msgsz" argument really denotes. [1] 2006-10-12 11:42:41 +00:00
nftw.c Replace the current implementations of ftw() and nftw() with the OpenBSD 2004-08-24 13:00:55 +00:00
nice.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
nice.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
nlist.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
nlist.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
nrand48.c
opendir.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
pause.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
pause.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
pmadvise.c Add the POSIX 1003.1-2001 posix_madvise() interface. 2003-08-09 03:23:24 +00:00
popen.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
popen.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
pselect.3
pselect.c
psignal.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
psignal.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
pw_scan.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
pw_scan.h Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
pwcache.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
pwcache.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
raise.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
raise.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
rand48.3 Sort sections. 2005-01-20 09:17:07 +00:00
rand48.h
readdir.c Since jb@ fixed the type of dd_lock in <dirent.h>, these casts are no 2007-12-03 14:33:51 +00:00
readpassphrase.3 Sort sections. 2005-01-20 09:17:07 +00:00
readpassphrase.c
rewinddir.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
rfork_thread.3 Replace the return value of rfork_thread(3) in its manual page 2003-04-27 21:07:27 +00:00
scandir.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
scandir.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
seed48.c
seekdir.c Since jb@ fixed the type of dd_lock in <dirent.h>, these casts are no 2007-12-03 14:33:51 +00:00
sem_destroy.3 Markup tidying. 2004-07-02 16:45:56 +00:00
sem_getvalue.3 Markup tidying. 2004-07-02 16:45:56 +00:00
sem_init.3 Cross-reference sem_getvalue(3) from several other semaphore-related 2005-07-13 13:15:22 +00:00
sem_open.3 Fix a typo in regards to the ENOENT error. 2007-12-27 21:55:49 +00:00
sem_post.3 Cross-reference sem_getvalue(3) from several other semaphore-related 2005-07-13 13:15:22 +00:00
sem_wait.3 Cross-reference sem_getvalue(3) from several other semaphore-related 2005-07-13 13:15:22 +00:00
sem.c Make __sem_timedwait() consistent with the sem_timedwait() prototype. 2005-10-18 17:24:03 +00:00
semctl.c Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go). 2003-02-16 17:29:11 +00:00
setdomainname.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
sethostname.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
setjmp.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
setjmperr.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
setmode.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
setmode.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
setproctitle.3 Mechanically kill hard sentence breaks. 2004-07-02 23:52:20 +00:00
setproctitle.c Don't segfault if setproctitle(3) is called with NULL initially. 2003-07-01 09:45:35 +00:00
setprogname.c
siginterrupt.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
siginterrupt.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
siglist.c o Remove duplicate includes. 2007-01-20 08:24:02 +00:00
signal.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
signal.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
sigsetops.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
sigsetops.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
sleep.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
sleep.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
srand48.c
statvfs.3 Add or correct section number in .Xr. Use .Vt or .Fn 2003-06-08 10:01:52 +00:00
statvfs.c
stringlist.3 Expand contractions. 2005-02-13 23:45:54 +00:00
stringlist.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
strtofflags.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
strtofflags.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
swapcontext.c
Symbol.map Our fts(3) API, as inherited from 4.4BSD, suffers from integer 2008-01-26 17:09:40 +00:00
sysconf.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
sysconf.c Cleanup sysconf(3) a bit. sysconf(3) assumes in some places it operates 2007-04-14 13:06:57 +00:00
sysctl.3 VM_METER is long deprecated. 2007-10-16 11:29:13 +00:00
sysctl.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
sysctlbyname.c
sysctlnametomib.c #include <string.h> for strlen()'s prototype. 2003-01-04 00:11:11 +00:00
syslog.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
syslog.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
tcgetpgrp.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
tcsendbreak.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
tcsetattr.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
tcsetpgrp.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
telldir.c Since jb@ fixed the type of dd_lock in <dirent.h>, these casts are no 2007-12-03 14:33:51 +00:00
telldir.h
termios.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
time.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
time.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
times.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
times.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
timezone.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
timezone.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
tls.c Don't assert() the TLS allocation requested is big enough; just 2007-02-25 21:23:50 +00:00
ttyname.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
ttyname.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
ttyslot.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
tzset.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
ualarm.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
ualarm.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
ucontext.3 Eliminate double whitespace. 2004-07-03 22:30:10 +00:00
ulimit.3 Rename UL_GETSIZE to UL_GETFSIZE and UL_SETSIZE to UL_SETFSIZE; these are 2003-01-04 01:11:49 +00:00
ulimit.c Rename UL_GETSIZE to UL_GETFSIZE and UL_SETSIZE to UL_SETFSIZE; these are 2003-01-04 01:11:49 +00:00
uname.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
uname.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
unvis.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
unvis.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
usleep.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
usleep.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
utime.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
utime.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
valloc.3 Remove extraneous .Ef request. 2007-10-30 15:26:20 +00:00
valloc.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
vis.3 Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
vis.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
wait3.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
wait.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
waitpid.c Per Regents of the University of Calfornia letter, remove advertising 2007-01-09 00:28:16 +00:00
wordexp.3 Correct usage example. 2006-04-18 21:37:24 +00:00
wordexp.c Fix typo: WRDE_DOOFS -> WRDE_DOOFFS. 2004-06-30 13:55:08 +00:00