aboutsummaryrefslogtreecommitdiff
path: root/stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'stack.h')
-rw-r--r--stack.h21
1 files changed, 9 insertions, 12 deletions
diff --git a/stack.h b/stack.h
index ec7418a..cd95b72 100644
--- a/stack.h
+++ b/stack.h
@@ -11,15 +11,12 @@
#ifndef __STACK_H
#define __STACK_H
-void stackInit( void );
-
-int stackNumElems( void );
-
-unsigned int stackTop( void );
-
-void stackPush( unsigned int value );
-
-unsigned int stackPop( void );
-
-#endif /* __STACK_H */
-
+__BEGIN_DECLS
+void stackInit(void);
+int stackNumElems(void);
+unsigned int stackTop(void);
+void stackPush(unsigned int value);
+unsigned int stackPop(void);
+__END_DECLS
+
+#endif