/* * * OBJFMT -- formal argument definitions */ #ifndef _FMLDEF_H #define _FMLDEF_H /* Appended to a procedure definition are the formal arguments: */ /* FML$ - The fixed part of the formal arguments description */ #define FML$K_SIZE 2 #define FML$C_SIZE 2 struct fmldef { unsigned char fml$b_minargs; /* minimum number of arguments */ unsigned char fml$b_maxargs; /* maximum which include function if procedure is one */ }; #endif /*_FMLDEF_H*/