# HG changeset patch # User Jim Meyering # Date 937728590 0 # Node ID a5764321dc19d73d3166bb2784ddc034f5b8c4d6 # Parent 750e7dd898b3a197564981be97feb9b3697da90a Remove useless parens in #if directive diff --git a/lib/strftime.c b/lib/strftime.c --- a/lib/strftime.c +++ b/lib/strftime.c @@ -100,7 +100,7 @@ #endif #ifndef __P -# if defined (__GNUC__) || (defined (__STDC__) && __STDC__) +# if defined __GNUC__ || (defined __STDC__ && __STDC__) # define __P(args) args # else # define __P(args) ()