1 /* ISC license. */
2 
3 #ifndef DIUINT_H
4 #define DIUINT_H
5 
6 typedef struct diuint diuint, *diuint_ref ;
7 struct diuint
8 {
9   unsigned int left ;
10   unsigned int right ;
11 } ;
12 
13 #define DIUINT_ZERO { .left = 0, .right = 0 }
14 
15 #endif
16