File: eperl_perl5.h

package info (click to toggle)
eperl 2.2.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 648 kB
  • sloc: ansic: 1,692; perl: 252; makefile: 139; sh: 10
file content (20 lines) | stat: -rw-r--r-- 488 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-2.0-only
**  Copyright (c) 1996,1997,1998 Ralf S. Engelschall <rse@engelschall.com>
*/
#ifndef EPERL_PERL5_H
#define EPERL_PERL5_H 1

/*  first include the standard Perl
    includes designed for embedding   */
#define PERL_NO_GET_CONTEXT     /* for efficiency reasons, see perlguts(3) */
#include <EXTERN.h>
#include <perl.h>

#ifndef aTHX
#define aTHX
#define aTHX_
#define pTHX void
#define pTHX_
#endif

#endif /* EPERL_PERL5_H */