From: Eric Biggers Date: Tue, 30 Oct 2012 01:21:56 +0000 (-0500) Subject: imagex.c: Remove unused swap() macro X-Git-Tag: v1.1.0~41 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=6bfd39a86273062b28536d4aec66893bc2fecdc0;hp=964f0350461c2e8ed9852a85a90ce369231117b8 imagex.c: Remove unused swap() macro --- diff --git a/programs/imagex.c b/programs/imagex.c index d12c8f71..8e9e9521 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -35,9 +35,6 @@ #define ARRAY_LEN(array) (sizeof(array) / sizeof(array[0])) -#define swap(a, b) ({ typeof(a) __a = (a); typeof(b) __b = (b); \ - a = __b; b = __a; }) - #define for_opt(c, opts) while ((c = getopt_long_only(argc, (char**)argv, "", \ opts, NULL)) != -1)