diff options
author | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-03-14 21:21:50 +0100 |
---|---|---|
committer | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-05-07 21:06:23 +0200 |
commit | f04f0853b2be8b46d1437e6636900165b3a89f73 (patch) | |
tree | 323f4c5ee01e14a4f8bc6b3d992269b19a7af4da /lib/errors.h | |
parent | efac5f44c41bc022b9b0b21130bd826745acef91 (diff) | |
download | gnutls-f04f0853b2be8b46d1437e6636900165b3a89f73.tar.gz |
Add or clean header guards in lib/
Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
Diffstat (limited to 'lib/errors.h')
-rw-r--r-- | lib/errors.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/errors.h b/lib/errors.h index 16b02ed046..976a788e7c 100644 --- a/lib/errors.h +++ b/lib/errors.h @@ -20,8 +20,8 @@ * */ -#ifndef GNUTLS_ERRORS_H -#define GNUTLS_ERRORS_H +#ifndef GNUTLS_LIB_ERRORS_H +#define GNUTLS_LIB_ERRORS_H #include "gnutls_int.h" #include <global.h> @@ -143,4 +143,4 @@ int gnutls_assert_val_int(int val, const char *file, const char *func, int line) #define gnutls_assert_val(x) gnutls_assert_val_int(x, __FILE__, __func__, __LINE__) #define gnutls_assert_val_fatal(x) (((x)!=GNUTLS_E_AGAIN && (x)!=GNUTLS_E_INTERRUPTED)?gnutls_assert_val_int(x, __FILE__, __func__, __LINE__):(x)) -#endif /* GNUTLS_ERRORS_H */ +#endif /* GNUTLS_LIB_ERRORS_H */ |