Skip to content
Snippets Groups Projects
Commit 2fff1f72 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Use HAVE_STRINGS_H and HAVE_STRCHR.

parent 917897d4
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id: isc-parse.c,v 0.7 1993/10/18 12:29:24 ceder Exp $ * $Id: isc-parse.c,v 0.8 1994/03/06 19:59:19 ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association. * Copyright (C) 1991 Lysator Academic Computer Association.
* *
* This file is part of the LysKOM server. * This file is part of the LysKOM server.
...@@ -26,12 +26,19 @@ ...@@ -26,12 +26,19 @@
* Generic parse routines. * Generic parse routines.
*/ */
static char *rcsid = "$Id: isc-parse.c,v 0.7 1993/10/18 12:29:24 ceder Exp $"; static char *rcsid = "$Id: isc-parse.c,v 0.8 1994/03/06 19:59:19 ceder Exp $";
#include "rcs.h" #include "rcs.h"
USE(rcsid); USE(rcsid);
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
# include <string.h> # include <string.h>
#else
# ifdef HAVE_STRINGS_H
# include <strings.h>
# endif
#endif
#ifndef HAVE_STRCHR
# define strchr index
#endif #endif
#include <setjmp.h> #include <setjmp.h>
#include <time.h> #include <time.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment