1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
* debug/segfault.c: Fix typos in comments.
This commit is contained in:
Ulrich Drepper
2007-08-22 07:04:23 +00:00
parent 7d55c9eb43
commit 682e4437a0
5 changed files with 15 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
/* Copyright (C) 1991,1996,1997,1999,2000,2001 Free Software Foundation, Inc.
/* Copyright (C) 1991,1996,1997,1999,2000,2001,2007
Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -30,7 +31,7 @@ static char *olds;
x = strtok(s, "-"); // x = "abc"
x = strtok(NULL, "-="); // x = "def"
x = strtok(NULL, "="); // x = NULL
// s = "abc\0-def\0"
// s = "abc\0=-def\0"
*/
char *
strtok (s, delim)