]> git.cameronkatri.com Git - mandoc.git/blobdiff - compat_strsep.c
fix the section number in the <title> element for preformatted pages;
[mandoc.git] / compat_strsep.c
index 1c7dfef9692f87622bdc192f603efb2ce519bc7d..9765ac823eebfcf4883a9e47e2357604a6d51cc5 100644 (file)
@@ -1,12 +1,5 @@
-#include "config.h"
-
-#ifdef HAVE_STRSEP
-
-int dummy;
-
-#else
-
-/*     ($)OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $      */
+/*     $Id: compat_strsep.c,v 1.5 2020/06/15 01:37:15 schwarze Exp $   */
+/*     $OpenBSD: strsep.c,v 1.8 2015/08/31 02:53:57 guenther Exp $     */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -36,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
@@ -74,5 +68,3 @@ strsep(char **stringp, const char *delim)
        }
        /* NOTREACHED */
 }
-
-#endif