X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=programs%2Fimagex.c;h=8e9e95218794e2481827406bcbf15781e6e30957;hp=d12c8f71e35d1025198147d8725fe92fad876275;hb=6bfd39a86273062b28536d4aec66893bc2fecdc0;hpb=964f0350461c2e8ed9852a85a90ce369231117b8 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)