xref: /csrg-svn/lib/libc/db/PORT/README (revision 57978)
1*57978Sbostic/*-
2*57978Sbostic * Copyright (c) 1991 The Regents of the University of California.
3*57978Sbostic * All rights reserved.
4*57978Sbostic *
5*57978Sbostic * Redistribution and use in source and binary forms, with or without
6*57978Sbostic * modification, are permitted provided that the following conditions
7*57978Sbostic * are met:
8*57978Sbostic * 1. Redistributions of source code must retain the above copyright
9*57978Sbostic *    notice, this list of conditions and the following disclaimer.
10*57978Sbostic * 2. Redistributions in binary form must reproduce the above copyright
11*57978Sbostic *    notice, this list of conditions and the following disclaimer in the
12*57978Sbostic *    documentation and/or other materials provided with the distribution.
13*57978Sbostic * 3. All advertising materials mentioning features or use of this software
14*57978Sbostic *    must display the following acknowledgement:
15*57978Sbostic *	This product includes software developed by the University of
16*57978Sbostic *	California, Berkeley and its contributors.
17*57978Sbostic * 4. Neither the name of the University nor the names of its contributors
18*57978Sbostic *    may be used to endorse or promote products derived from this software
19*57978Sbostic *    without specific prior written permission.
20*57978Sbostic *
21*57978Sbostic * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22*57978Sbostic * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23*57978Sbostic * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24*57978Sbostic * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25*57978Sbostic * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26*57978Sbostic * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27*57978Sbostic * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28*57978Sbostic * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29*57978Sbostic * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30*57978Sbostic * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31*57978Sbostic * SUCH DAMAGE.
32*57978Sbostic *
33*57978Sbostic *	@(#)README	5.2 (Berkeley) 9/26/91
34*57978Sbostic */
35*57978Sbostic
36*57978SbosticThe files are:
37*57978Sbostic	README		This file.
38*57978Sbostic	bcopy.c		A source file that can be compiled into memmove,
39*57978Sbostic			memcpy or bcopy.  It handles overlapping copies,
40*57978Sbostic			So if your system's doesn't, use it.
41*57978Sbostic	cdefs.h		Function prototype #defines.
42*57978Sbostic	compat.h	Compatibility header file for lots of things;
43*57978Sbostic			necessary if your system isn't POSIX 1003.1 and
44*57978Sbostic			ANSI C compliant.  You'll have to pick and choose
45*57978Sbostic			for some of them!
46*57978Sbostic	mktemp.c	Mktemp(3) and mkstemp(3) for systems lacking them.
47