brintos

brintos / linux-shallow public Read only

0
0
Text · 2.2 KiB · 0ca0c83 Raw
65 lines · c
1/* 2   You may distribute this file under either of the two licenses that3   follow at your discretion.4*/5 6/* BLURB lgpl7 8                           Coda File System9                              Release 510 11          Copyright (c) 1987-1999 Carnegie Mellon University12                  Additional copyrights listed below13 14This code is distributed "AS IS" without warranty of any kind under15the terms of the GNU Library General Public Licence Version 2, as16shown in the file LICENSE, or under the license shown below. The17technical and financial contributors to Coda are listed in the file18CREDITS.19 20                        Additional copyrights 21*/22 23/*24 25            Coda: an Experimental Distributed File System26                             Release 4.027 28          Copyright (c) 1987-1999 Carnegie Mellon University29                         All Rights Reserved30 31Permission  to  use, copy, modify and distribute this software and its32documentation is hereby granted,  provided  that  both  the  copyright33notice  and  this  permission  notice  appear  in  all  copies  of the34software, derivative works or  modified  versions,  and  any  portions35thereof, and that both notices appear in supporting documentation, and36that credit is given to Carnegie Mellon University  in  all  documents37and publicity pertaining to direct or indirect use of this code or its38derivatives.39 40CODA IS AN EXPERIMENTAL SOFTWARE SYSTEM AND IS  KNOWN  TO  HAVE  BUGS,41SOME  OF  WHICH MAY HAVE SERIOUS CONSEQUENCES.  CARNEGIE MELLON ALLOWS42FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION.   CARNEGIE  MELLON43DISCLAIMS  ANY  LIABILITY  OF  ANY  KIND  FOR  ANY  DAMAGES WHATSOEVER44RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE  OR  OF45ANY DERIVATIVE WORK.46 47Carnegie  Mellon  encourages  users  of  this  software  to return any48improvements or extensions that  they  make,  and  to  grant  Carnegie49Mellon the rights to redistribute these changes without encumbrance.50*/51 52/*53 *54 * Based on cfs.h from Mach, but revamped for increased simplicity.55 * Linux modifications by 56 * Peter Braam, Aug 199657 */58#ifndef _CODA_HEADER_59#define _CODA_HEADER_60 61typedef unsigned long long u_quad_t;62 63#include <uapi/linux/coda.h>64#endif 65