tree-wide: remove Emacs lines from all files This should be handled fine now by .dir-locals.el, so need to carry that stuff in every file.
basic: re-sort includes My previous patch to only include what we use accidentially placed the added inlcudes in non-sorted order.
basic: include only what we use This is a cleaned up result of running iwyu but without forward declarations on src/basic.
tree-wide: sort includes Sort the includes accoding to the new coding style.
util-lib: split out allocation calls into alloc-util.[ch]
util-lib: move a number of fs operations into fs-util.[ch]
util: move filename_is_valid() and path_is_safe() to path-util.[ch]
util-lib: split out fd-related operations into fd-util.[ch] There are more than enough to deserve their own .c file, hence move them over.
tree-wide: use coccinelle to patch a lot of code to use mfree() This replaces this: free(p); p = NULL; by this: p = mfree(p); Change generated using coccinelle. Semantic patch is added to the sources.
build-sys: split internal basic/ library from shared/ basic/ can be used by everything cannot use anything outside of basic/ libsystemd/ can use basic/ cannot use shared/ shared/ can use libsystemd/