This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Confused? You won't be after the next version of pigs in space
[metaconfig.git] / dist / U / d_bcopy.U
CommitLineData
d8875586
MBT
1?RCS: $Id: d_bcopy.U 1 2006-08-24 12:32:52Z rmanfredi $
2?RCS:
3?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
4?RCS:
5?RCS: You may redistribute only under the terms of the Artistic Licence,
6?RCS: as specified in the README file that comes with the distribution.
7?RCS: You may reuse parts of this distribution only within the terms of
8?RCS: that same Artistic Licence; a copy of which may be found at the root
9?RCS: of the source tree for dist 4.0.
10?RCS:
11?RCS: $Log: d_bcopy.U,v $
12?RCS: Revision 3.0.1.2 1993/10/16 13:48:04 ram
13?RCS: patch12: added magic support for bcopy()
14?RCS:
15?RCS: Revision 3.0.1.1 1993/09/13 16:01:11 ram
16?RCS: patch10: now only defines HAS_BCOPY, no macro remap on memcpy (WAD)
17?RCS:
18?RCS: Revision 3.0 1993/08/18 12:05:44 ram
19?RCS: Baseline for dist 3.0 netwide release.
20?RCS:
21?MAKE:d_bcopy: Inlibc
22?MAKE: -pick add $@ %<
23?S:d_bcopy:
24?S: This variable conditionally defines the HAS_BCOPY symbol if
25?S: the bcopy() routine is available to copy strings.
26?S:.
27?C:HAS_BCOPY:
28?C: This symbol is defined if the bcopy() routine is available to
29?C: copy blocks of memory.
30?C:.
31?H:#$d_bcopy HAS_BCOPY /**/
32?H:.
33?M:bcopy: HAS_BCOPY
34?M:#ifndef HAS_BCOPY
35?M:#ifndef bcopy
36?M:#define bcopy(s,d,l) memcpy((d),(s),(l))
37?M:#endif
38?M:#endif
39?M:.
40?LINT:set d_bcopy
41: see if bcopy exists
42set bcopy d_bcopy
43eval $inlibc
44