summaryrefslogtreecommitdiff
path: root/build-aux/snippet
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-11-20 22:25:10 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2012-11-29 23:38:57 -0800
commit038d8f13e39320ac1838609caf367f49c634d716 (patch)
tree24c6bf0c1c9665e401baab074443a40b9164bcb6 /build-aux/snippet
parent057536bd73db72485950605b32f9cfbde98988b3 (diff)
downloadgnulib-038d8f13e39320ac1838609caf367f49c634d716.tar.gz
snippet/warn-on-use: no 'static inline'
* build-aux/snippet/warn-on-use.h: Remove unnecessary 'inline' in comment.
Diffstat (limited to 'build-aux/snippet')
-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 c7bea5dba9..abfcace83a 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 ())