9 lines
107 B
C
9 lines
107 B
C
|
/* Stack include file */
|
||
|
|
||
|
#ifndef STACK_H
|
||
|
#define STACK_H
|
||
|
|
||
|
typedef uint32_t stack_t;
|
||
|
|
||
|
#endif /* STACK_H */
|