=================================================================== RCS file: /cvs/mandoc/preconv.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mandoc/preconv.c 2014/08/10 23:54:41 1.7 +++ mandoc/preconv.c 2014/08/16 19:00:01 1.8 @@ -1,4 +1,4 @@ -/* $Id: preconv.c,v 1.7 2014/08/10 23:54:41 schwarze Exp $ */ +/* $Id: preconv.c,v 1.8 2014/08/16 19:00:01 schwarze Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * @@ -17,7 +17,7 @@ #include "config.h" #include -#ifdef HAVE_MMAP +#if HAVE_MMAP #include #include #endif @@ -244,7 +244,7 @@ read_whole_file(const char *f, int fd, size_t off; ssize_t ssz; -#ifdef HAVE_MMAP +#if HAVE_MMAP struct stat st; if (-1 == fstat(fd, &st)) { perror(f); @@ -508,7 +508,7 @@ main(int argc, char *argv[]) rc = EXIT_SUCCESS; out: -#ifdef HAVE_MMAP +#if HAVE_MMAP if (map) munmap(b.buf, b.sz); else