summaryrefslogtreecommitdiffstats
path: root/build-aux/snippet/_Noreturn.h
diff options
context:
space:
mode:
authorRincewindsHat <12514511+RincewindsHat@users.noreply.github.com>2021-11-17 00:05:54 (GMT)
committerRincewindsHat <12514511+RincewindsHat@users.noreply.github.com>2022-08-23 15:06:16 (GMT)
commit91a7bd6c38536be2062806dfbfb9df824b94b79a (patch)
tree24f4c6e2b9bdf3bdcc0eeb7add21abeb432fe813 /build-aux/snippet/_Noreturn.h
parent3ad5fe9d84138da1451429bfac3b9b4024393d25 (diff)
downloadmonitoring-plugins-91a7bd6.tar.gz
Sync with the latest Gnulib code (1a268176f)
Diffstat (limited to 'build-aux/snippet/_Noreturn.h')
-rw-r--r--build-aux/snippet/_Noreturn.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/build-aux/snippet/_Noreturn.h b/build-aux/snippet/_Noreturn.h
deleted file mode 100644
index c44ad89..0000000
--- a/build-aux/snippet/_Noreturn.h
+++ /dev/null
@@ -1,10 +0,0 @@
1#if !defined _Noreturn && __STDC_VERSION__ < 201112
2# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
3 || 0x5110 <= __SUNPRO_C)
4# define _Noreturn __attribute__ ((__noreturn__))
5# elif 1200 <= _MSC_VER
6# define _Noreturn __declspec (noreturn)
7# else
8# define _Noreturn
9# endif
10#endif