vacall - C functions called with variable arguments

This library allows C functions to be called with variable arguments and
to return variable return values. This is much like the varargs(3) facility,
but also allows the return value to be specified at run time.

A typical use is the implementation of call-back functions in embedded
interpreters.


Installation instructions:

        ./configure
        make
        make check
        make install


Files in this package:

    Documentation:

        README          this text
        COPYING         free software license
        PLATFORMS       list of supported platforms
        vacall.3        manual page in Unix man format
        vacall.man      manual page
        vacall.html     manual page in HTML format

    Source:

        vacall.h.in     master for main include file vacall.h
        vacall-*.c      source for the interface function
        vacall-*.[sS]   its translation to assembly language
        misc.c          auxiliary functions
        tests.c         test program

    Installation:

        configure       configuration script
        configure.ac    autoconf source for the configuration script
        ../build-aux/*  auxiliary build scripts
        Makefile.in     Makefile master
        config.h.in     config.h master

    Porting:

        Makefile.devel  developer's Makefile
        underscore.h    used to build the *.S files


Copyright notice:

Copyright 1995-2017 Bruno Haible <bruno@clisp.org>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

