Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 116062 | Differences between
and this patch

Collapse All | Expand All

(-)glkloader-0.3.2/glk.h~ (-2 / +3 lines)
Lines 17-24 Link Here
17
/* You may have to edit the definition of glui32 to make sure it's really a
17
/* You may have to edit the definition of glui32 to make sure it's really a
18
    32-bit unsigned integer type, and glsi32 to make sure it's really a
18
    32-bit unsigned integer type, and glsi32 to make sure it's really a
19
    32-bit signed integer type. If they're not, horrible things will happen. */
19
    32-bit signed integer type. If they're not, horrible things will happen. */
20
typedef unsigned long glui32; 
20
#include <stdint.h>
21
typedef signed long glsi32; 
21
typedef uint32_t glui32; 
22
typedef int32_t glsi32; 
22
23
23
/* These are the compile-time conditionals that reveal various Glk optional
24
/* These are the compile-time conditionals that reveal various Glk optional
24
    modules. */
25
    modules. */

Return to bug 116062