<div dir="ltr">Replacing ``inline`` by ``static`` in r58077.<br><br>Fixed according to G7: landsat_met.c:103: undefined reference to `chrncpy' [2] where the ``chrncpy`` from the same file causes the same error and is only ``static`` now.<div>

<br></div><div>``static inline`` works fine, too, but ``date_replace_slash`` does not meet criteria for being ``inline`` specified in [2] by Glynn: It is not simple enough (has a loop inside) and moreover, it's called only a few times (raw guess).<br>

<div><br></div><div>Vaclav</div><div><br></div><div>[1] <a href="https://trac.osgeo.org/grass/changeset/58077">https://trac.osgeo.org/grass/changeset/58077</a></div><div>[2] <a href="http://lists.osgeo.org/pipermail/grass-dev/2013-July/065231.html" target="_blank" style="font-size:13px;font-family:arial,sans-serif">http://lists.osgeo.org/pipermail/grass-dev/2013-July/065231.html</a></div>

</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, Oct 20, 2013 at 8:46 AM, Markus Neteler <span dir="ltr"><<a href="mailto:neteler@osgeo.org" target="_blank">neteler@osgeo.org</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Sun, Oct 20, 2013 at 5:46 AM, Vaclav Petras <<a href="mailto:wenzeslaus@gmail.com">wenzeslaus@gmail.com</a>> wrote:<br>


> Hi,<br>
><br>
> i.landsat.toar compilation fails when compiling using clang compiler. The<br>
> error is:<br>
><br>
>  undefined reference to `date_replace_slash'<br>
><br>
> This function is defined using ``inline`` keyword:<br>
><br>
>  inline void date_replace_slash(char *str)<br>
><br>
> I know ``inline`` is not part of C89. However, I'm not sure about the fix. I<br>
> can fix it by replacing ``inline`` by ``__inline__``. This works for GCC [1]<br>
> and clang (should support GCC extensions) but I'm not sure about other<br>
> compilers (on the less usual platforms).<br>
<br>
</div>"static" may be a viable solution. For comments on this, see also<br>
<br>
<a href="http://lists.osgeo.org/pipermail/grass-dev/2013-July/065231.html" target="_blank">http://lists.osgeo.org/pipermail/grass-dev/2013-July/065231.html</a><br>
<span class="HOEnZb"><font color="#888888"><br>
Markus<br>
</font></span></blockquote></div><br></div>