#ifndef __GFD_H #define __GFD_H typedef struct idec { SHORT attr; SHORT id; unsigned SHORT sl[4]; /* 80-bit signed number */ short msd; /* most significant word */ } IDEC; typedef struct ldec { SHORT lattr; /* redef's for long's */ SHORT lid; unsigned long lsl[2]; short lmsd; } LDEC; typedef union { IDEC dc; LDEC ls; } DEC; typedef DEC DECP[1]; #endif /* __GFD_H */