aboutsummaryrefslogtreecommitdiff
path: root/compat/function-attributes.h
diff options
context:
space:
mode:
authoruncrustify <david@tethera.net>2019-06-13 07:34:25 -0300
committerDavid Bremner <david@tethera.net>2019-06-14 07:41:27 -0300
commit8099050c7191525c63b03e8b175620d2a2c1a9a3 (patch)
tree70021d7697b1f7c4770d92045f2ee45f6432c901 /compat/function-attributes.h
parent1a8916786f9464af6c8a05713a4c987a6b097a12 (diff)
compat: run uncrustify
This is the result of running $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h in the compat directory
Diffstat (limited to 'compat/function-attributes.h')
-rw-r--r--compat/function-attributes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/function-attributes.h b/compat/function-attributes.h
index 1945b5bf..8f08bec4 100644
--- a/compat/function-attributes.h
+++ b/compat/function-attributes.h
@@ -35,9 +35,9 @@
* provides support for testing for function attributes.
*/
#ifndef NORETURN_ATTRIBUTE
-#if (__GNUC__ >= 3 || \
- (__GNUC__ == 2 && __GNUC_MINOR__ >= 5) || \
- __has_attribute (noreturn))
+#if (__GNUC__ >= 3 || \
+ (__GNUC__ == 2 && __GNUC_MINOR__ >= 5) || \
+ __has_attribute (noreturn))
#define NORETURN_ATTRIBUTE __attribute__ ((noreturn))
#else
#define NORETURN_ATTRIBUTE