add original FreeBSD RCS ID.

NOTE: these files were obtained from FreeBSD and fitted for NetBSD
by sigsegv@infoseek.jp.
This commit is contained in:
tshiozak 2003-03-07 06:46:38 +00:00
parent c6fc01f541
commit e16e5eebd3
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,5 @@
.\" $NetBSD: wcstok.3,v 1.2 2003/03/07 06:46:38 tshiozak Exp $
.\"
.\" Copyright (c) 1998 Softweyr LLC. All rights reserved.
.\"
.\" strtok_r, from Berkeley strtok
@ -47,7 +49,8 @@
.\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" $NetBSD: wcstok.3,v 1.1 2003/03/05 20:18:17 tshiozak Exp $
.\" Original version ID:
.\" FreeBSD: src/lib/libc/string/wcstok.3,v 1.4 2002/10/15 09:49:54 tjr Exp
.\"
.Dd October 3, 2002
.Dt WCSTOK 3

View File

@ -1,4 +1,4 @@
/* $NetBSD: wcstok.c,v 1.1 2003/03/05 20:18:17 tshiozak Exp $ */
/* $NetBSD: wcstok.c,v 1.2 2003/03/07 06:46:39 tshiozak Exp $ */
/*-
* Copyright (c) 1998 Softweyr LLC. All rights reserved.
@ -36,11 +36,14 @@
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Original version ID:
* FreeBSD: src/lib/libc/string/wcstok.c,v 1.1 2002/09/07 08:16:57 tjr Exp
*/
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: wcstok.c,v 1.1 2003/03/05 20:18:17 tshiozak Exp $");
__RCSID("$NetBSD: wcstok.c,v 1.2 2003/03/07 06:46:39 tshiozak Exp $");
#endif
#include <assert.h>