This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove trailing whitespace on meta-lines in unit files
[metaconfig.git] / dist / U / d_bcmp.U
CommitLineData
d8875586
MBT
1?RCS: $Id: d_bcmp.U 1 2006-08-24 12:32:52Z rmanfredi $
2?RCS:
3?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
cf39bd7e 4?RCS:
d8875586
MBT
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_bcmp.U,v $
12?RCS: Revision 3.0.1.2 1993/10/16 13:47:52 ram
13?RCS: patch12: added magic support for bcmp()
14?RCS:
15?RCS: Revision 3.0.1.1 1993/09/13 16:00:44 ram
16?RCS: patch10: now only defines HAS_BCMP, no macro remap on memcmp (WAD)
17?RCS:
18?RCS: Revision 3.0 1993/08/18 12:05:42 ram
19?RCS: Baseline for dist 3.0 netwide release.
20?RCS:
21?MAKE:d_bcmp: Inlibc
22?MAKE: -pick add $@ %<
23?S:d_bcmp:
24?S: This variable conditionally defines the HAS_BCMP symbol if
25?S: the bcmp() routine is available to compare strings.
26?S:.
27?C:HAS_BCMP:
28?C: This symbol is defined if the bcmp() routine is available to
29?C: compare blocks of memory.
30?C:.
31?H:#$d_bcmp HAS_BCMP /**/
32?H:.
33?M:bcmp: HAS_BCMP
34?M:#ifndef HAS_BCMP
35?M:#ifndef bcmp
36?M:#define bcmp(s,d,l) memcmp((s),(d),(l))
37?M:#endif
38?M:#endif
39?M:.
40?LINT:set d_bcmp
41: see if bcmp exists
42set bcmp d_bcmp
43eval $inlibc
44