Initial import of binutils 2.22 on the new vendor branch
[dragonfly.git] / lib / libsys / abi / basetypes.h
1 /*
2  * BASETYPES.H
3  *
4  * Implements all non-structural types specified in syscall configuration
5  * files.
6  *
7  * $DragonFly: src/lib/libsys/abi/basetypes.h,v 1.1 2005/05/08 18:14:54 dillon Exp $
8  */
9 typedef int8_t generic_8_t;
10 typedef int16_t generic_16_t;
11 typedef int32_t generic_32_t;
12 typedef int64_t generic_64_t;
13
14 typedef char *char_ptr;
15 typedef int *int_ptr;
16
17 typedef const char *const_char_ptr;