e77c5164cf
uncanny.
14 lines
104 B
C
14 lines
104 B
C
#ifndef VREG_H
|
|
#define VREG_H
|
|
|
|
struct vreg
|
|
{
|
|
int id;
|
|
};
|
|
|
|
extern struct vreg* new_vreg(void);
|
|
|
|
#endif
|
|
|
|
|