Switch from bioq_insert_tail() to bioqdisksort(). When the kernel is
[dragonfly.git] / lib / libsys / abi / basetypes.h
blob59a954947dbdaf5d7b8cb9520141f40cfaa2f2a9
1 /*
2 * BASETYPES.H
4 * Implements all non-structural types specified in syscall configuration
5 * files.
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;
14 typedef char *char_ptr;
15 typedef int *int_ptr;
17 typedef const char *const_char_ptr;