CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 31 Jul 2025 07:51:16 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20210117101959
location: https://web.archive.org/web/20210117101959/https://perl5.git.perl.org/perl5.git/blob/HEAD:/EXTERN.h
server-timing: captures_list;dur=0.556221, exclusion.robots;dur=0.019960, exclusion.robots.policy;dur=0.010217, esindex;dur=0.011958, cdx.remote;dur=10.886990, LoadShardBlock;dur=88.891540, PetaboxLoader3.datanode;dur=58.626689
x-app-server: wwwb-app221
x-ts: 302
x-tr: 132
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app221; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Thu, 31 Jul 2025 07:51:16 GMT
content-type: application/xhtml+xml; charset=utf-8
x-archive-orig-date: Sun, 17 Jan 2021 10:19:59 GMT
x-archive-orig-server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips
x-archive-orig-keep-alive: timeout=5, max=100
x-archive-orig-connection: Keep-Alive
x-archive-orig-x-crawler-transfer-encoding: chunked
x-archive-orig-content-length: 13024
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 17 Jan 2021 10:19:59 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 17 Jan 2021 10:19:59 GMT", ; rel="memento"; datetime="Sun, 17 Jan 2021 10:19:59 GMT", ; rel="last memento"; datetime="Sun, 17 Jan 2021 10:19:59 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: CC-MAIN-2021-04-1610703511903.11-0000/CC-MAIN-20210117081748-20210117111748-00006.warc.gz
server-timing: captures_list;dur=0.502886, exclusion.robots;dur=0.017457, exclusion.robots.policy;dur=0.008469, esindex;dur=0.010144, cdx.remote;dur=23.613229, LoadShardBlock;dur=208.029188, PetaboxLoader3.datanode;dur=111.591691, PetaboxLoader3.resolve;dur=215.613430, load_resource;dur=176.932476
x-app-server: wwwb-app221
x-ts: 200
x-tr: 471
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
perl5.git.perl.org Git - perl5.git/blob - EXTERN.h
This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
1 /* EXTERN.h
2 *
3 * Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, by Larry Wall and others
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
11 /*
12 * EXT designates a global var which is defined in perl.h
13 * dEXT designates a global var which is defined in another
14 * file, so we can't count on finding it in perl.h
15 * (this practice should be avoided).
16 */
17 #undef EXT
18 #undef dEXT
19 #undef EXTCONST
20 #undef dEXTCONST
22 # if defined(WIN32) && !defined(PERL_STATIC_SYMS)
23 /* miniperl should not export anything */
24 # if defined(PERL_IS_MINIPERL)
25 # define EXT extern
26 # define dEXT
27 # define EXTCONST extern const
28 # define dEXTCONST const
29 # elif defined(PERLDLL)
30 # define EXT EXTERN_C __declspec(dllexport)
31 # define dEXT
32 # define EXTCONST EXTERN_C __declspec(dllexport) const
33 # define dEXTCONST const
34 # else
35 # define EXT EXTERN_C __declspec(dllimport)
36 # define dEXT
37 # define EXTCONST EXTERN_C __declspec(dllimport) const
38 # define dEXTCONST const
39 # endif
40 # else
41 # if defined(__CYGWIN__) && defined(USEIMPORTLIB)
42 # define EXT extern __declspec(dllimport)
43 # define dEXT
44 # define EXTCONST extern __declspec(dllimport) const
45 # define dEXTCONST const
46 # else
47 # define EXT extern
48 # define dEXT
49 # define EXTCONST extern const
50 # define dEXTCONST const
51 # endif
52 # endif
54 #undef INIT
55 #define INIT(x)
57 #undef DOINIT