typedef unsigned long int rpn_value_t

This commit is contained in:
Yann Weber 2020-01-25 06:43:59 +01:00
commit 59f83eee05

View file

@ -52,6 +52,12 @@
/**@brief macro to declare a code part and associated size */ /**@brief macro to declare a code part and associated size */
#define CODE_PART(NAME) const extern void* NAME; extern const unsigned long NAME ## _sz #define CODE_PART(NAME) const extern void* NAME; extern const unsigned long NAME ## _sz
/**@brief Define the type of value manipulated by RPN expressions
*
* Use it for stack and arguments items
* @todo use it */
typedef unsigned long int rpn_value_t;
/**@brief Function heading code /**@brief Function heading code
* *
* - stack frame creation * - stack frame creation