Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-16 | ccan: Correct some poor conventions in _info includes | David Gibson | |
There are a couple of small problems with the includes used in most of ccan's _info files. * _info routinely uses printf(), and so should include <stdio.h>, but only some of them do. We get away with it, because they do include <string.h>, which apparently includes <stdio.h> indirectly, but we should be explicit about it. * Most _info files were including config.h after the system headers. That _seems_ sensible, but actually causes problems. Because config.h defines _GNU_SOURCE it can change the behaviour of the system headers. More specifically it can make them behave differently to how the individual module headers (which have included config.h) expects them to behave. This patch adjusts all the existing _info files and, more importantly, the template constructed by ccanlint. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||
2011-08-16 | block_pool, ccan_tokenizer, stringmap: add ccanlint license suppressions. | Rusty Russell | |
2011-08-15 | stringmap: Corrected LICENSE link so it points to BSD-3CLAUSE. | Joey Adams | |
2010-10-21 | license: more changing of licence -> license. | Rusty Russell | |
2010-10-07 | compiler, list, noerr, sparse_bsearch, str, str_talloc, stringmap, ↵ | Rusty Russell | |
talloc_link, tdb, tdb2, typesafe_cb: fix examples Phew, now they call compile! | |||
2010-08-06 | Add licences/ dir and symlinks for a bit more clarity. | Rusty Russell | |
2010-01-06 | Remove old run-tests, clean up #includes to all be <ccan/... | Rusty Russell | |
2009-08-04 | stringmap: fail path can print uninitialized var in test. | Rusty Russell | |
2009-07-21 | stringmap: Flipped bit order to match sorted string order and added ↵ | Joey Adams | |
traversal test | |||
2009-07-18 | Improved stringmap to support strings with null characters | Joey Adams | |
2009-07-15 | Tiny fix to stringmap's run.c | Joey Adams | |
2009-07-15 | Added module stringmap | Joey Adams | |