Advertisement
Omnikron13

scheme.h

Feb 29th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.10 KB | None | 0 0
  1. typedef struct num {
  2.     char is_fixnum;
  3.     union {
  4.         long ivalue;
  5.         double rvalue;
  6.     } value;
  7. } num;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement