Deleted Added
sdiff udiff text old ( 77117 ) new ( 86170 )
full compact
1/*-
2 * Copyright (c)1999 Citrus Project,
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 16 unchanged lines hidden (view full) ---

25 *
26 * citrus Id: wmemset.c,v 1.2 2000/12/20 14:08:31 itojun Exp
27 */
28
29#include <sys/cdefs.h>
30#if defined(LIBC_SCCS) && !defined(lint)
31__RCSID("$NetBSD: wmemset.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
32#endif /* LIBC_SCCS and not lint */
33__FBSDID("$FreeBSD: head/lib/libc/string/wmemset.c 86170 2001-11-07 19:55:16Z obrien $");
34
35#include <assert.h>
36#include <wchar.h>
37
38wchar_t *
39wmemset(s, c, n)
40 wchar_t *s;
41 wchar_t c;

--- 12 unchanged lines hidden ---