summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2012-12-16 11:58:24 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2012-12-16 11:58:24 +0100
commit0daee2e0dd9904d9e85044d181553dfab81e426d (patch)
tree325665aecdd94c3cc63e43e24d62e6dde3891978 /build-aux
parentf9f5a817c619af57d19eb49b9c6091118d6165e2 (diff)
downloadgnutls-0daee2e0dd9904d9e85044d181553dfab81e426d.tar.gz
updated gnulib
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/snippet/warn-on-use.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/snippet/warn-on-use.h b/build-aux/snippet/warn-on-use.h
index d4cb94f352..51e69bbd9b 100644
--- a/build-aux/snippet/warn-on-use.h
+++ b/build-aux/snippet/warn-on-use.h
@@ -55,7 +55,7 @@
rather than issue the nice warning, but the end result of informing
the developer about their portability problem is still achieved):
#if HAVE_RAW_DECL_ENVIRON
- static inline char ***rpl_environ (void) { return &environ; }
+ static char ***rpl_environ (void) { return &environ; }
_GL_WARN_ON_USE (rpl_environ, "environ is not always properly declared");
# undef environ
# define environ (*rpl_environ ())