freebsd-skq/lib
robert 9920d9cacd - Convert the function definition to declare its arguments
in the ANSI-C format.
 - Change the code a bit to hopefully save some cycles.
   I.e. (simplified) change

     a = b + 1;
     while (--b & 0x7)
	/* ... */
   to
     a = b;
     for (; b & 0x7; b--)
	/* ... */
   and
     while (--a >= 0)
	/* ... */
   to
     for (; a > 0; a--)
	/* ... */
 - Equip two function arguments of swab() with the 'restrict'
   type qualifier in form of the '__restrict' macro.  This is
   specified by POSIX.1-2001.
2002-08-30 20:33:05 +00:00
..
compat Updated libc/libc_r that fixes the FreeBSD-SA-02:28.resolv resolver bug. 2002-08-04 05:51:05 +00:00
csu Drop support for COPY, -c has been the default mode of install(1) 2002-07-29 09:40:17 +00:00
libalias Don't forget to recalculate the IP checksum of the original 2002-07-23 00:16:19 +00:00
libatm
libbind
libbz2
libc - Convert the function definition to declare its arguments 2002-08-30 20:33:05 +00:00
libc_r Remove much of the dereferencing of the fd table entries to look 2002-08-29 23:06:07 +00:00
libcalendar
libcam
libcom_err
libcompat
libcrypt
libdevinfo o Merge <machine/ansi.h> and <machine/types.h> into a new header 2002-08-21 16:20:02 +00:00
libdevstat
libdisk
libedit
libfetch Surround prototypes with __BEGIN_DECLS / __END_DECLS. 2002-07-22 16:11:39 +00:00
libform
libftpio
libio
libipsec
libipx Replace various spelling with FALLTHROUGH which is lint()able 2002-08-25 13:10:45 +00:00
libisc
libkse Remove much of the dereferencing of the fd table entries to look 2002-08-29 23:06:07 +00:00
libkvm Hopefully unbreak world. ke_slptime is gone. It should really have been 2002-08-30 02:18:38 +00:00
libmd
libmenu
libmilter
libmp
libncp
libncurses o Merge <machine/ansi.h> and <machine/types.h> into a new header 2002-08-21 16:20:02 +00:00
libnetgraph
libopie
libpam Since pam_get_authtok(3) doesn't know about our options structure, setting 2002-07-30 08:32:03 +00:00
libpanel Initial update of bmake glue for ncurses-5.2-20020518 2002-05-21 05:41:07 +00:00
libpcap
libpthread Remove much of the dereferencing of the fd table entries to look 2002-08-29 23:06:07 +00:00
libradius mdoc(7) police: tidy up the formatting. 2002-08-09 12:07:17 +00:00
librpcsvc
libsbuf
libsm
libsmb
libsmdb
libsmutil
libstand o Merge <machine/ansi.h> and <machine/types.h> into a new header 2002-08-21 16:20:02 +00:00
libtacplus
libtelnet
libufs Wrap the header to prevent multiple inclusion, and mark the DECLS section. 2002-08-22 23:35:35 +00:00
libugidfw Use "ugidfw.h" rather than <ugidfw.h> so that mkdep can find it. 2002-08-14 22:30:07 +00:00
libusbhid
libutil Replace various spelling with FALLTHROUGH which is lint()able 2002-08-25 13:10:45 +00:00
libvgl
libwrap
libxpg4
liby
libypclnt
libz Fix an easy warning in a local addition. 2002-08-01 11:29:05 +00:00
msun
ncurses o Merge <machine/ansi.h> and <machine/types.h> into a new header 2002-08-21 16:20:02 +00:00
Makefile Hook up libugidfw to the build. 2002-08-02 07:09:53 +00:00
Makefile.inc