summaryrefslogtreecommitdiff
path: root/compat/atomics/gcc
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-12-02 20:08:49 -0300
committerJames Almer <jamrial@gmail.com>2016-12-02 20:08:54 -0300
commitf88c8e0dc3a6afe6ca4c133f2d7182cdbb0b638d (patch)
tree152662bfc6f311b4bdb3e45c2f3fd394d3e85dd3 /compat/atomics/gcc
parentb5a0b85721785d07f8158be079763ad4e7a36979 (diff)
compat/atomics: rename header guards
Fixes fate-source. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'compat/atomics/gcc')
-rw-r--r--compat/atomics/gcc/stdatomic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/atomics/gcc/stdatomic.h b/compat/atomics/gcc/stdatomic.h
index 55cc4e4637..41caddec5c 100644
--- a/compat/atomics/gcc/stdatomic.h
+++ b/compat/atomics/gcc/stdatomic.h
@@ -21,8 +21,8 @@
* Copyright (C) 2010 RĂ©mi Denis-Courmont
*/
-#ifndef FFMPEG_COMPAT_ATOMICS_GCC_STDATOMIC_H
-#define FFMPEG_COMPAT_ATOMICS_GCC_STDATOMIC_H
+#ifndef COMPAT_ATOMICS_GCC_STDATOMIC_H
+#define COMPAT_ATOMICS_GCC_STDATOMIC_H
#include <stddef.h>
#include <stdint.h>
@@ -170,4 +170,4 @@ do { \
#define atomic_flag_clear_explicit(object, order) \
atomic_flag_clear(object)
-#endif /* FFMPEG_COMPAT_ATOMICS_GCC_STDATOMIC_H */
+#endif /* COMPAT_ATOMICS_GCC_STDATOMIC_H */