Home | History | Annotate | Download | only in 4.1
History log of /src/lib/libcompat/4.1/ftime.c
RevisionDateAuthorComments
 1.12  26-Jul-2003  salo netbsd.org->NetBSD.org
 1.11  14-Sep-2000  msaitoh check LIBC_SCCS
 1.10  14-Jun-2000  cgd sweep of my licenses (userland files w/o only my copyright) for
consistency. (no functional changes)
 1.9  14-Jun-2000  cgd fix up NetBSD RCS Ids to match the standard, and the leading comment as
to match as well. No functional changes.
 1.8  20-Sep-1999  lukem branches: 1.8.6;
back out the #ifdef _DIAGNOSTIC argument checks; too many people complained.
_DIAGASSERT() is still retained.
 1.7  16-Sep-1999  lukem * use _DIAGASSERT() to check pointer arguments against NULL and file
descriptors against -1 (as appropriate).
* add actual checks which to detect stuff that would trigger_DIAGASSERT(),
and attempt to return a sane error condition.
* knf some code
* remove some `register' decls.

the first two items result in the addition of code similar to the
following in various functions:

_DIAGASSERT(path != NULL)
#ifdef _DIAGNOSTIC
if (path == NULL) {
errno = EFAULT;
return (-1);
}
#endif
 1.6  04-May-1999  christos Cast to unsigned short to avoid loss of precision message.
 1.5  09-Oct-1997  lukem rcsid facism, WARNSify
 1.4  05-Jun-1995  pk Prototypes (PR#1098).
 1.3  06-May-1994  cgd oops!
 1.2  02-Aug-1993  mycroft Add RCS identifiers, remove some completely useless RCS logs and patchkit
headers, and a few other insignificant changes.
 1.1  23-Mar-1993  cgd added libcompat for compatibility routines, like ftime, etc.
 1.8.6.1  23-Jun-2000  minoura Sync w/ netbsd-1-5-base.

RSS XML Feed