Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2019-02-13 17:02:54 +0300
committerMartin Storsjö <martin@martin.st>2019-02-13 17:09:03 +0300
commitc45f6b379d98c3b32dfa7abda74434978aa94094 (patch)
treec4f5984c877768c70b01905425df37821e80f4e3 /src/arm/32/util.S
parent53025a2b32f35878c1c6c00bef4a51f239631955 (diff)
Remove leading double underscores from include guard defines
A symbol starting with two leading underscores is reserved for the compiler/standard library implementation. Also remove the trailing two double underscores for consistency and symmetry.
Diffstat (limited to 'src/arm/32/util.S')
-rw-r--r--src/arm/32/util.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arm/32/util.S b/src/arm/32/util.S
index 30121ea..b86b268 100644
--- a/src/arm/32/util.S
+++ b/src/arm/32/util.S
@@ -26,8 +26,8 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/
-#ifndef __DAVID_SRC_ARM_32_UTIL_S__
-#define __DAVID_SRC_ARM_32_UTIL_S__
+#ifndef DAVID_SRC_ARM_32_UTIL_S
+#define DAVID_SRC_ARM_32_UTIL_S
#include "config.h"
#include "src/arm/asm.S"
@@ -63,4 +63,4 @@
#endif
.endm
-#endif /* __DAVID_SRC_ARM_32_UTIL_S__ */
+#endif /* DAVID_SRC_ARM_32_UTIL_S */