From 682e4437a0784a917bc2df89a6b7d5cbfdefc8a0 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 22 Aug 2007 07:04:23 +0000 Subject: [BZ #4582] * debug/segfault.c: Fix typos in comments. --- string/strtok.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'string/strtok.c') diff --git a/string/strtok.c b/string/strtok.c index f45b760f74..9d6bb06779 100644 --- a/string/strtok.c +++ b/string/strtok.c @@ -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) -- cgit v1.2.1