#ifndef STACK_STRUCT_H #define STACK_STRUCT_H struct stack { int data; struct stack *next; }; #endif /* ! STACK_STRUCT_H */