aboutsummaryrefslogtreecommitdiff
path: root/plugins/uriparser/UriDefsConfig.h
diff options
context:
space:
mode:
authorGravatar Andreas Baumann <mail@andreasbaumann.cc> 2018-05-31 15:32:09 +0200
committerGravatar Sven Nierlein <sven@nierlein.de> 2018-10-22 16:30:31 +0200
commitc5cd0e491238397bd9cafff2707773146305a528 (patch)
treef6f77edb59073932167f1e862b96143daaa63aa8 /plugins/uriparser/UriDefsConfig.h
parent7dd0a31b285121ae2b4af019e7b337e5eb0427af (diff)
downloadmonitoring-plugins-c5cd0e491238397bd9cafff2707773146305a528.tar.gz
updated bundled version of uriparser to 0.8.5
Diffstat (limited to 'plugins/uriparser/UriDefsConfig.h')
-rw-r--r--plugins/uriparser/UriDefsConfig.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/uriparser/UriDefsConfig.h b/plugins/uriparser/UriDefsConfig.h
index d87ccb63..9f7ac65f 100644
--- a/plugins/uriparser/UriDefsConfig.h
+++ b/plugins/uriparser/UriDefsConfig.h
@@ -2,7 +2,7 @@
* uriparser - RFC 3986 URI parsing library
*
* Copyright (C) 2007, Weijia Song <songweijia@gmail.com>
- * Copyright (C) 2007, Sebastian Pipping <webmaster@hartwork.org>
+ * Copyright (C) 2007, Sebastian Pipping <sebastian@pipping.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -88,7 +88,7 @@
/* http://predef.sourceforge.net/precomp.html#sec32 */
/* http://msdn2.microsoft.com/en-us/library/ms882281.aspx */
# define URI_INLINE __forceinline
-#elif (__STDC_VERSION__ >= 199901L)
+#elif (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L))
/* C99, "inline" is a keyword */
# define URI_INLINE inline
#else