Skip to content

Commit

Permalink
fix: addition of pragma once
Browse files Browse the repository at this point in the history
Signed-off-by: VyacheslavIurevich <vyacheslav.kochergin1@gmail.com>
  • Loading branch information
VyacheslavIurevich committed Jul 20, 2024
1 parent df7004a commit cfdb137
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/calculator/calculator.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma once
#include "../dllist/dllist.h"
#include <stdbool.h>
#define BASE \
Expand Down
1 change: 1 addition & 0 deletions src/exit_codes.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma once
enum exit_code {
all_fine = 0,
commandline_args_error = 1,
Expand Down
1 change: 1 addition & 0 deletions src/queue/queue.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma once
#include <inttypes.h>
#include <stddef.h>
#define QUEUE_CAPACITY 5000
Expand Down

0 comments on commit cfdb137

Please sign in to comment.