aboutsummaryrefslogtreecommitdiffhomepage
path: root/compat/getdelim.c
Commit message (Collapse)AuthorAge
* getdelim: Silence a (bogus) compiler warning.Gravatar Carl Worth2009-12-01
| | | | | | Some compilers complain that result might be used uninitialized in this function. I believe such compilers simply aren't looking hard enough, but it's easy enough to silence them.
* compat/getdelim: Silence a warning about mixing of signed/unsigned.Gravatar Carl Worth2009-12-01
| | | | | If the length is ever so large as to overflow, then we'll end up returning a negative value (which indicates an error anyway).
* compat: Change includes from config.h to compat.h.Gravatar Carl Worth2009-12-01
| | | | | We may switch to using an autoconf-like config.h, but we're not doing that just yet.
* compat: Add implementation of getline from gnulib.Gravatar Carl Worth2009-12-01
These were copied from the gnulib git repository as of: commit 563c779682040ed4b89c9b4bbe428dcd8157c90a They come under the GNU GPL v3 (or later) exactly as notmuch is licensed.