typedef unsigned long int rpn_value_t
This commit is contained in:
parent
c4a4642910
commit
59f83eee05
1 changed files with 6 additions and 0 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue