=================================================================== RCS file: /cvs/mandoc/compat_isblank.c,v retrieving revision 1.1 retrieving revision 1.3 diff -u -p -r1.1 -r1.3 --- mandoc/compat_isblank.c 2015/03/19 14:57:29 1.1 +++ mandoc/compat_isblank.c 2020/06/15 01:37:15 1.3 @@ -1,12 +1,4 @@ -#include "config.h" - -#if HAVE_ISBLANK - -int dummy; - -#else - -/* $Id: compat_isblank.c,v 1.1 2015/03/19 14:57:29 schwarze Exp $ */ +/* $Id: compat_isblank.c,v 1.3 2020/06/15 01:37:15 schwarze Exp $ */ /* * Copyright (c) 2015 Ingo Schwarze * @@ -22,12 +14,10 @@ int dummy; * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "config.h" int isblank(int c) { - - return(c == ' ' || c == '\t'); + return c == ' ' || c == '\t'; } - -#endif