changeset 32212:56cbeca2a533

cosmetics: Slightly shorten swab() check.
author diego
date Sat, 18 Sep 2010 09:24:38 +0000
parents 6f9c18a79ddd
children 350cd8d94435
files configure
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Sep 18 08:05:10 2010 +0000
+++ b/configure	Sat Sep 18 09:24:38 2010 +0000
@@ -3858,11 +3858,7 @@
 cat > $TMPC << EOF
 #define _XOPEN_SOURCE 600
 #include <unistd.h>
-int main(void) {
-    int a = 0, b = 0;
-    swab(&a, &b, 0);
-    return 0;
-}
+int main(void) { int a, b; swab(&a, &b, 0); return 0; }
 EOF
 _swab=no
 cc_check && _swab=yes