NetBSD/gnu/dist/libiberty
wiz 4c99916337 va_{start,end} audit:
Make sure that each va_start has one and only one matching va_end,
especially in error cases.
If the va_list is used multiple times, do multiple va_starts/va_ends.
If a function gets va_list as argument, don't let it use va_end (since
it's the callers responsibility).

Improved by comments from enami and christos -- thanks!

Heimdal/krb4/KAME changes already fed back, rest to follow.

Inspired by, but not not based on, OpenBSD.
2001-09-24 13:22:25 +00:00
..
config Remove files obsoleted by egcs import of libiberty. 1998-08-28 16:59:09 +00:00
COPYING.LIB Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
Makefile.in Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
README Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
acconfig.h Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
alloca-conf.h Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
alloca.c
argv.c Resolve conflicts and get prototypes from the right places (conig.h 1998-08-28 16:02:39 +00:00
asprintf.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
atexit.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
basename.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
bcmp.c
bcopy.c
bzero.c
choose-temp.c Nuke stdio.h's P_tmpdir and explicitly try /tmp after the environment 1998-09-14 17:19:35 +00:00
clock.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
concat.c
config.h-vms
config.in Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
config.table Import egcs 1.1.1 (release). 1998-12-13 00:15:30 +00:00
configure Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
configure.in Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
copysign.c
cplus-dem.c Update the C++ demangler to one from the egcs 1.2 trunk, dated 19980131. 1999-02-02 21:00:32 +00:00
fdmatch.c
floatformat.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
fnmatch.c
getcwd.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
getopt.c Resolve conflicts and get prototypes from the right places (conig.h 1998-08-28 16:02:39 +00:00
getopt1.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
getpagesize.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
getruntime.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
hex.c
index.c
insque.c
makefile.dos
makefile.vms Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
memchr.c
memcmp.c
memcpy.c
memmove.c
memset.c
mpw.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
msdos.c
objalloc.c
obstack.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
pexecute.c Make sure to include config.h if available. 1998-08-28 16:58:25 +00:00
random.c
rename.c
rindex.c
sigsetmask.c
spaces.c
strcasecmp.c
strchr.c
strdup.c
strerror.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
strncasecmp.c
strrchr.c
strsignal.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
strstr.c
strtod.c
strtol.c
strtoul.c
tmpnam.c
vasprintf.c va_{start,end} audit: 2001-09-24 13:22:25 +00:00
vfork.c
vfprintf.c
vprintf.c
vsprintf.c
waitpid.c
xatexit.c
xexit.c
xmalloc.c Update libiberty to that shipped with egcs. Improvements include better 1998-08-28 15:39:36 +00:00
xstrdup.c
xstrerror.c

README

This directory contains the -liberty library of free software.
It is a collection of subroutines used by various GNU programs.
Current members include:

	getopt -- get options from command line
	obstack -- stacks of arbitrarily-sized objects
	strerror -- error message strings corresponding to errno
	strtol -- string-to-long conversion
	strtoul -- string-to-unsigned-long conversion

We expect many of the GNU subroutines that are floating around to
eventually arrive here.

The library must be configured from the top source directory.  Don't
try to run configure in this directory.  Follow the configuration
instructions in ../README.

Please report bugs and fixes to "bug-gnu-utils@prep.ai.mit.edu".  Thank you.

ADDING A NEW FILE
=================

There are two sets of files:  Those that are "required" will be
included in the library for all configurations, while those
that are "optional" will be included in the library only if "needed."

To add a new required file, edit Makefile to add the source file
name to CFILES and the object file to REQUIRED_OFILES.

To add a new optional file, it must provide a single function, and the
name of the function must be the same as the name of the file.

    * Add the source file name to CFILES.

    * Add the function to name to the funcs shell variable in
      configure.in.

    * Add the function to the AC_CHECK_FUNCS lists just after the
      setting of the funcs shell variable.  These AC_CHECK_FUNCS calls
      are never executed; they are there to make autoheader work
      better.

    * Consider the special cases of building libiberty; as of this
      writing, the special cases are newlib and VxWorks.  If a
      particular special case provides the function, you do not need
      to do anything.  If it does not provide the function, add the
      object file to LIBOBJS, and add the function name to the case
      controlling whether to define HAVE_func.

The optional file you've added (e.g. getcwd.c) should compile and work
on all hosts where it is needed.  It does not have to work or even
compile on hosts where it is not needed.

ADDING A NEW CONFIGURATION
==========================

On most hosts you should be able to use the scheme for automatically
figuring out which files are needed.  In that case, you probably
don't need a special Makefile stub for that configuration.

If the fully automatic scheme doesn't work, you may be able to get
by with defining EXTRA_OFILES in your Makefile stub.  This is
a list of object file names that should be treated as required
for this configuration - they will be included in libiberty.a,
regardless of whatever might be in the C library.