1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/converters/aish/files/patch-ai_unix.c
Pete Fritchman 6700bfc4b8 Fix build on -current.
Submitted by:	bento
2002-06-07 17:48:47 +00:00

14 lines
241 B
C

$FreeBSD$
--- ai_unix.c.orig Fri Jun 7 12:59:05 2002
+++ ai_unix.c Fri Jun 7 13:00:49 2002
@@ -15,7 +15,7 @@
char *ptr;
{
#ifdef BZ_BSD
- return bzero( ptr, len );
+ bzero( ptr, len );
#else
return memset( ptr, '\0', len );
#endif