From: Kevin Locke Date: Thu, 29 Sep 2016 00:44:43 +0000 (-0600) Subject: configurator: Inline err.h functions X-Git-Url: http://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=888660c3c11f15331e8a06a0e492d48650b2680f;hp=888660c3c11f15331e8a06a0e492d48650b2680f configurator: Inline err.h functions On systems where err.h is not provided (e.g. MSVC) configurator must provide its own definition. The err module can not be used by configurator due to its dependency on config.h, so the relevant source is copied into configurator with the minimum changes necessary. Changes since v2: - Use the CCAN err module sources instead of musl libc sources to avoid introducing another implementation of these functions. - Prefix err.h functions with "c12r_" to avoid name conflicts and "static declaration follows non-static" errors. Signed-off-by: Kevin Locke Signed-off-by: David Gibson ---