Sign in
gwj
/
po_oopc
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Network
Graphs
Download as
Email Patches
Plain Diff
Browse Code »
Commit
5dc62c6a110ee664619f0588dbec434728ddfea7
Authored by
Grzegorz Jabłoński
2022-10-04 15:05:30 +0200
1 parent
13660600
Added missing semicolon
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
examples01-pl/18-stack3/stack.c
examples01-pl/18-stack3/stack.c
View file @
5dc62c6
...
...
@@ -8,7 +8,7 @@
8
8
struct stack_handle {
9
9
int top; /* pierwsze wolne miejsce na stosie */
10
10
int dane[STACKSIZE];
11
-}
11
+}
;
12
12
13
13
struct stack_handle*
14
14
init()
...
...