constify delim

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2585 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-07-24 07:08:23 +00:00
parent 2f573b56ca
commit dc8eff4207

View File

@@ -48,7 +48,7 @@ RCSID("$Id$");
#ifndef HAVE_STRSEP
char *
strsep(char **str, char *delim)
strsep(char **str, const char *delim)
{
char *save = *str;
if(*str == NULL)