mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-20 11:48:30 -06:00
Update old-style function definition for my_strtok()
This commit is contained in:
parent
d6ac56ce5f
commit
47491eeaa5
@ -109,9 +109,7 @@ static char *olds;
|
||||
returning a 0 length valid string between two consecutive ocurence of delim.
|
||||
It will also return a 0 length string instead of NULL when it reaches the end of s
|
||||
*/
|
||||
static char * my_strtok (s, delim)
|
||||
char *s;
|
||||
const char *delim;
|
||||
static char * my_strtok (char *s, const char *delim)
|
||||
{
|
||||
char *token;
|
||||
/*DEBUG("strtok(): Start...");*/
|
||||
|
Loading…
Reference in New Issue
Block a user