This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
add probe for __attribute__(always_inline)
[metaconfig.git] / dist / U / d_bzero.U
1 ?RCS: $Id: d_bzero.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_bzero.U,v $
12 ?RCS: Revision 3.0.1.2  1993/10/16  13:48:15  ram
13 ?RCS: patch12: added magic support for bzero()
14 ?RCS:
15 ?RCS: Revision 3.0.1.1  1993/09/13  16:01:33  ram
16 ?RCS: patch10: now only defines HAS_BZERO, no macro remap on memset (WAD)
17 ?RCS:
18 ?RCS: Revision 3.0  1993/08/18  12:05:46  ram
19 ?RCS: Baseline for dist 3.0 netwide release.
20 ?RCS:
21 ?MAKE:d_bzero: Inlibc
22 ?MAKE:  -pick add $@ %<
23 ?S:d_bzero:
24 ?S:     This variable conditionally defines the HAS_BZERO symbol if
25 ?S:     the bzero() routine is available to set memory to 0.
26 ?S:.
27 ?C:HAS_BZERO:
28 ?C:     This symbol is defined if the bzero() routine is available to
29 ?C:     set a memory block to 0.
30 ?C:.
31 ?H:#$d_bzero HAS_BZERO  /**/
32 ?H:.
33 ?M:bzero: HAS_BZERO
34 ?M:#ifndef HAS_BZERO
35 ?M:#ifndef bzero
36 ?M:#define bzero(s,l) memset((s),0,(l))
37 ?M:#endif
38 ?M:#endif
39 ?M:.
40 ?LINT:set d_bzero
41 : see if bzero exists
42 set bzero d_bzero
43 eval $inlibc
44