diff options
author | ru <ru@FreeBSD.org> | 2001-05-16 14:34:47 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-05-16 14:34:47 +0000 |
commit | 6560bf44e92e4d136ec44a5e9744caec257046fc (patch) | |
tree | 17d51232e76b29a32100ee3a50d2d23a1b2deef8 /lib/libc/string/wcslcat.c | |
parent | b9f33f3993fb48e463c0875a9841beca42165a64 (diff) | |
download | FreeBSD-src-6560bf44e92e4d136ec44a5e9744caec257046fc.zip FreeBSD-src-6560bf44e92e4d136ec44a5e9744caec257046fc.tar.gz |
Unbreak world; _DIAGASSERT macro is not available in FreeBSD.
Diffstat (limited to 'lib/libc/string/wcslcat.c')
-rw-r--r-- | lib/libc/string/wcslcat.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libc/string/wcslcat.c b/lib/libc/string/wcslcat.c index d6c669a..3145eaf 100644 --- a/lib/libc/string/wcslcat.c +++ b/lib/libc/string/wcslcat.c @@ -57,9 +57,6 @@ wcslcat(dst, src, siz) size_t n = siz; size_t dlen; - _DIAGASSERT(dst != NULL); - _DIAGASSERT(src != NULL); - /* Find the end of dst and adjust bytes left but don't go past end */ while (*d != '\0' && n-- != 0) d++; |