diff options
author | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1989-11-17 03:02:59 +0000 |
---|---|---|
committer | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1989-11-17 03:02:59 +0000 |
commit | ffed7fefd1d95d05e699dababfbb57ef2497cea1 (patch) | |
tree | ac02e16ead3b52915c921545a9ccb80f5c857501 /util.h | |
parent | 0d3e774cdb279a1eadd8282d49334b9b1bfd42ed (diff) | |
download | perl-ffed7fefd1d95d05e699dababfbb57ef2497cea1.tar.gz |
perl 3.0 patch #6 patch 5 continued
See patch 5.
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Header: util.h,v 3.0.1.1 89/10/26 23:28:25 lwall Locked $ +/* $Header: util.h,v 3.0.1.2 89/11/17 15:48:01 lwall Locked $ * * Copyright (c) 1989, Larry Wall * @@ -6,6 +6,9 @@ * as specified in the README file that comes with the perl 3.0 kit. * * $Log: util.h,v $ + * Revision 3.0.1.2 89/11/17 15:48:01 lwall + * patch5: BZERO separate from BCOPY now + * * Revision 3.0.1.1 89/10/26 23:28:25 lwall * patch1: declared bcopy if necessary * @@ -33,8 +36,11 @@ char *rninstr(); char *nsavestr(); FILE *mypopen(); int mypclose(); -#ifndef BCOPY #ifndef MEMCPY +#ifndef BCOPY char *bcopy(); #endif +#ifndef BZERO +char *bzero(); +#endif #endif |