[ccan] [PATCH v2 01/13] configurator: Replace unlink with remove
David Gibson
david at gibson.dropbear.id.au
Tue Sep 27 14:50:03 AEST 2016
On Thu, Sep 22, 2016 at 09:33:04PM -0600, Kevin Locke wrote:
> Although Windows provides unlink, using it adds complication due to the
> lack of unistd.h which must be included to define the function on POSIX
> systems. Instead, use remove, which C89 requires to be in stdio.h.
>
> Signed-off-by: Kevin Locke <kevin at kevinlocke.name>
> Reviewed-by: David Gibson <david at gibson.dropbear.id.au>
This is sane enough on its own, so I'll apply it to master.
> ---
> tools/configurator/configurator.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/configurator/configurator.c b/tools/configurator/configurator.c
> index 67dadc6..e322c76 100644
> --- a/tools/configurator/configurator.c
> +++ b/tools/configurator/configurator.c
> @@ -639,8 +639,8 @@ int main(int argc, const char *argv[])
> run_test(cmd, &tests[i]);
> free(cmd);
>
> - unlink(OUTPUT_FILE);
> - unlink(INPUT_FILE);
> + remove(OUTPUT_FILE);
> + remove(INPUT_FILE);
>
> printf("/* Generated by CCAN configurator */\n"
> "#ifndef CCAN_CONFIG_H\n"
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.ozlabs.org/pipermail/ccan/attachments/20160927/f37a93d4/attachment-0001.sig>
More information about the ccan
mailing list