diff options
| author | J08nY | 2018-03-03 01:24:03 +0100 |
|---|---|---|
| committer | J08nY | 2018-03-03 01:24:03 +0100 |
| commit | d53630043dedeef63a1ea8063c537a939d43afda (patch) | |
| tree | a79f723623da515b6611cbe8d8896ff829f289c7 /src/misc | |
| parent | 1f0f281a8a0ee8d4114a7f1df6c762f20e935746 (diff) | |
| download | ecgen-d53630043dedeef63a1ea8063c537a939d43afda.tar.gz ecgen-d53630043dedeef63a1ea8063c537a939d43afda.tar.zst ecgen-d53630043dedeef63a1ea8063c537a939d43afda.zip | |
Add direcory names to include guards.
Diffstat (limited to 'src/misc')
| -rw-r--r-- | src/misc/config.h | 6 | ||||
| -rw-r--r-- | src/misc/types.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/misc/config.h b/src/misc/config.h index ab5b0ba..2800783 100644 --- a/src/misc/config.h +++ b/src/misc/config.h @@ -5,8 +5,8 @@ /** * @file config.h */ -#ifndef ECGEN_CONFIG_H -#define ECGEN_CONFIG_H +#ifndef ECGEN_MISC_CONFIG_H +#define ECGEN_MISC_CONFIG_H #include <stdbool.h> #include <stddef.h> @@ -125,4 +125,4 @@ typedef struct { extern config_t cfg_s; extern config_t *cfg; -#endif // ECGEN_CONFIG_H +#endif // ECGEN_MISC_CONFIG_H diff --git a/src/misc/types.h b/src/misc/types.h index 0471fc9..4b6d8f9 100644 --- a/src/misc/types.h +++ b/src/misc/types.h @@ -5,8 +5,8 @@ /** * @file types.h */ -#ifndef ECGEN_TYPES_H -#define ECGEN_TYPES_H +#ifndef ECGEN_MISC_TYPES_H +#define ECGEN_MISC_TYPES_H #include <limits.h> #include <pari/pari.h> @@ -196,4 +196,4 @@ CHECK(check_skip); */ UNROLL(unroll_skip); -#endif // ECGEN_TYPES_H +#endif // ECGEN_MISC_TYPES_H |
