1 /*
2  *
3  *  os_types.h
4  *
5  *      Original Copyright (C) Aaron Holtzman - May 1999
6  *      Modifications Copyright (C) Stan Seibert - July 2000
7  *
8  *  This file is part of libao, a cross-platform audio output library.  See
9  *  README for a history of this source code.
10  *
11  *  libao is free software; you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License as published by
13  *  the Free Software Foundation; either version 2, or (at your option)
14  *  any later version.
15  *
16  *  libao is distributed in the hope that it will be useful,
17  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *  GNU General Public License for more details.
20  *
21  *  You should have received a copy of the GNU General Public License
22  *  along with GNU Make; see the file COPYING.  If not, write to
23  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24  *
25  */
26 
27 /* Set type sizes for this platform (Requires Autoconf) */
28 
29 #ifndef __OS_TYPES_H__
30 #define __OS_TYPES_H__
31 
32 typedef unsigned char     uint_8;
33 typedef unsigned short uint_16;
34 typedef unsigned int uint_32;
35 typedef signed   char     sint_8;
36 typedef signed   short sint_16;
37 typedef signed   int sint_32;
38 
39 #endif /* __OS_TYPES_H__ */
40