Head file for stack.c.
It implements a data structure stack.
The size of this stack is STACKSIZE, the type of each element
in the stack is element.
Change the typedef of this element and recompile,
then you have a stack of another type.
#define STACKSIZE 100
typedef double element;
void push(element);
element pop(void);
element dup(void);
void up(void);
void down(void);
void list(void);
void swaptop(void);