44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
/* $NetBSD: defs.h,v 1.2 2009/02/16 06:46:54 reinoud Exp $ */
|
|
|
|
/*
|
|
* File "defs.h" is part of the UDFclient toolkit.
|
|
* File $Id: defs.h,v 1.2 2009/02/16 06:46:54 reinoud Exp $
|
|
*
|
|
* Copyright (c) 2003, 2004, 2005, 2006 Reinoud Zandijk <reinoud@netbsd.org>
|
|
* All rights reserved.
|
|
*
|
|
* The UDFclient toolkit is distributed under the Clarified Artistic Licence.
|
|
* A copy of the licence is included in the distribution as
|
|
* `LICENCE.clearified.artistic' and a copy of the licence can also be
|
|
* requested at the GNU foundantion's website.
|
|
*
|
|
* Visit the UDFclient toolkit homepage http://www.13thmonkey.org/udftoolkit/
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef _DEFS_H_
|
|
#define _DEFS_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <dirent.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <inttypes.h>
|
|
|
|
|
|
#endif /* _DEFS_H_ */
|
|
|