• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-Sep-2004-

Makefile.amH A D22-Aug-20041.2 KiB397

Makefile.inH A D07-Sep-200410.8 KiB373272

READMEH A D18-Jul-1998938 2116

alloca.cH A D15-Jul-199813.8 KiB493283

error.cH A D15-Jul-19985.1 KiB214151

error.hH A D15-Jul-19982.4 KiB6626

getopt.cH A D15-Jul-199828 KiB1,001584

getopt.hH A D15-Jul-19984.6 KiB13448

getopt1.cH A D15-Jul-19984.5 KiB190123

lib.hH A D24-Jul-1998951 4119

strcasecmp.cH A D15-Jul-19981.3 KiB5025

strdup.cH A D15-Jul-19981.2 KiB4420

strstr.cH A D15-Jul-19982.6 KiB11777

xmalloc.cH A D15-Jul-19982.6 KiB13084

xstrdup.cH A D15-Jul-19981.2 KiB4320

xstrtol.cH A D15-Jul-19983.3 KiB179124

xstrtol.hH A D15-Jul-19981.8 KiB7061

xstrtoul.cH A D15-Jul-199850 32

xstrtoul.hH A D15-Jul-1998385 146

README

1These files were taken verbatim from the GNU C Library.
2
3This directory contains source for functions which are occasionally
4missing from popular Unix variants.  These functions will *not* be
5used if your system includes support for them already, with the
6following exceptions:
7
8	* xmalloc(), xstrdup(), xstrtol() and xstrtoul(), since these
9          are not standard functions.
10
11        * Any functions you explicitly request to be used.  This is
12          useful when a function on your system is known to be buggy -
13          for instance, old releases of Solaris are known to have a
14          buggy alloca().  In general, you can count on autoconf to
15	  do a good job figuring out whether you need these routines.
16	  However, if you want to outsmart autoconf, merely edit the
17	  `config.h' in the main distribution directory.
18
19In general, you shouldn't have to worry about these details -- just
20let autoconf take care of everything.
21