diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2002-06-07 17:48:47 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2002-06-07 17:48:47 +0000 |
commit | 6700bfc4b8f75e2b700e19d8a33c5dce194738fa (patch) | |
tree | df9dfe47c9f06a58420a9e945a1d525dfb597acd /converters/aish | |
parent | 0813a42498169da64c91017068b3d0a5df97133b (diff) | |
download | ports-6700bfc4b8f75e2b700e19d8a33c5dce194738fa.tar.gz ports-6700bfc4b8f75e2b700e19d8a33c5dce194738fa.zip |
Notes
Diffstat (limited to 'converters/aish')
-rw-r--r-- | converters/aish/files/patch-ai_unix.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/converters/aish/files/patch-ai_unix.c b/converters/aish/files/patch-ai_unix.c new file mode 100644 index 000000000000..1dede121cd74 --- /dev/null +++ b/converters/aish/files/patch-ai_unix.c @@ -0,0 +1,13 @@ +$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 |