GCS  0.2.3
gu_types.h
1 // Copyright (C) 2013 Codership Oy <info@codership.com>
2 
9 #ifndef _gu_types_h_
10 #define _gu_types_h_
11 
12 #include <stdint.h> /* intXX_t and friends */
13 #include <stdbool.h> /* bool */
14 #include <unistd.h> /* ssize_t */
15 #include <stddef.h> /* ptrdiff_t */
16 #include <sys/types.h> /* off_t */
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
22 typedef unsigned char gu_byte_t;
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif /* _gu_types_h_ */