=================================================================== RCS file: /cvs/mandoc/compat_strsep.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mandoc/compat_strsep.c 2014/12/11 09:05:01 1.4 +++ mandoc/compat_strsep.c 2020/06/15 01:37:15 1.5 @@ -1,14 +1,6 @@ -#include "config.h" +/* $Id: compat_strsep.c,v 1.5 2020/06/15 01:37:15 schwarze Exp $ */ +/* $OpenBSD: compat_strsep.c,v 1.5 2020/06/15 01:37:15 schwarze Exp $ */ -#if HAVE_STRSEP - -int dummy; - -#else - -/* $Id: compat_strsep.c,v 1.4 2014/12/11 09:05:01 schwarze Exp $ */ -/* $OpenBSD: compat_strsep.c,v 1.4 2014/12/11 09:05:01 schwarze Exp $ */ - /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -37,6 +29,7 @@ int dummy; * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ +#include "config.h" /* * Get next token from string *stringp, where tokens are possibly-empty @@ -75,5 +68,3 @@ strsep(char **stringp, const char *delim) } /* NOTREACHED */ } - -#endif