Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
2fff1f72
Commit
2fff1f72
authored
Mar 06, 1994
by
Per Cederqvist
Browse files
Use HAVE_STRINGS_H and HAVE_STRCHR.
parent
917897d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server/isc-parse.c
View file @
2fff1f72
/*
* $Id: isc-parse.c,v 0.
7
199
3/10/18 12:29:24
ceder Exp $
* $Id: isc-parse.c,v 0.
8
199
4/03/06 19:59:19
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -26,12 +26,19 @@
* Generic parse routines.
*/
static
char
*
rcsid
=
"$Id: isc-parse.c,v 0.
7
199
3/10/18 12:29:24
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: isc-parse.c,v 0.
8
199
4/03/06 19:59:19
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
#ifdef HAVE_STRING_H
# include <string.h>
#else
# ifdef HAVE_STRINGS_H
# include <strings.h>
# endif
#endif
#ifndef HAVE_STRCHR
# define strchr index
#endif
#include <setjmp.h>
#include <time.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment