aboutsummaryrefslogtreecommitdiff
path: root/src/stack-array.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stack-array.c')
-rw-r--r--src/stack-array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stack-array.c b/src/stack-array.c
index a36de7b..ca68a03 100644
--- a/src/stack-array.c
+++ b/src/stack-array.c
@@ -9,7 +9,7 @@
9typedef int T; 9typedef int T;
10 10
11struct stack { 11struct stack {
12 T * array; 12 T *array;
13 size_t sz, p; 13 size_t sz, p;
14}; 14};
15/* -->8-- */ 15/* -->8-- */
@@ -150,7 +150,7 @@ test_stack(void)
150} 150}
151 151
152int 152int
153main() 153main(void)
154{ 154{
155 test_stack(); 155 test_stack();
156 return EXIT_SUCCESS; 156 return EXIT_SUCCESS;