History log of /src/lib/libc/net/iso_addr.c |
Revision | | Date | Author | Comments |
1.15 |
| 01-Mar-2013 |
joerg | Retire OSI network stack. OK core@
|
1.14 |
| 20-Mar-2012 |
matt | branches: 1.14.2; Use C89 Prototypes. Remove use of __P
|
1.13 |
| 13-Mar-2012 |
christos | PR/45989: Martin Husemann: lint invocation does include -w only on i386
- turn lint -w for all the platforms after fixing the lint warnings. - add _DIAGASSERTS() for casts that would assign values to types that would not fit. - change types, add casts - change into ansii prototypes - turn on _DIAGNOSTIC for libc (during current, to be eliminated for release builds)
approved by core@
|
1.12 |
| 29-Nov-2005 |
christos | branches: 1.12.44; WARNS=4
|
1.11 |
| 07-Aug-2003 |
agc | Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22280, verified by myself.
|
1.10 |
| 20-Sep-1999 |
lukem | back out the #ifdef _DIAGNOSTIC argument checks; too many people complained. _DIAGASSERT() is still retained.
|
1.9 |
| 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.8 |
| 13-Nov-1998 |
christos | delint
|
1.7 |
| 15-Oct-1998 |
kleink | (bcmp(), bcopy(), bzero()) -> (memcmp(), memcpy(), memset())
|
1.6 |
| 26-Jul-1998 |
mycroft | const poisoning.
|
1.5 |
| 13-Jul-1997 |
christos | Fix RCSID's Fix gcc warnings Add missing prototypes Use "namespace.h"
|
1.4 |
| 25-Feb-1995 |
cgd | branches: 1.4.4; clean up import. also convert everything to new Id format.
|
1.3 |
| 26-Aug-1993 |
jtc | Declare rcsid strings so they are stored in text segment.
|
1.2 |
| 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
1.1 |
| 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
1.1.1.2 |
| 25-Feb-1995 |
cgd | 4.4-Lite lib/libc/net
|
1.1.1.1 |
| 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
1.4.4.1 |
| 20-Sep-1996 |
jtc | snapshot namespace cleanup: net, etc.
|
1.12.44.2 |
| 22-May-2014 |
yamt | sync with head.
for a reference, the tree before this commit was tagged as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid a limitation of cvs. ("Protocol error: too many arguments")
|
1.12.44.1 |
| 17-Apr-2012 |
yamt | sync with head
|
1.14.2.1 |
| 23-Jun-2013 |
tls | resync from head
|