mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 08:38:23 +00:00
In GH 20435 many typos in our C code were corrected. However, this pull
request was not applied to blead and developed merge conflicts. I
extracted diffs for the individual modified files and applied them with
'git apply', excepting four files where patch conflicts were reported.
Those files were:
handy.h
locale.c
regcomp.c
toke.c
We can handle these in a subsequent commit. Also, had to run these two
programs to keep 'make test_porting' happy:
$ ./perl -Ilib regen/uconfig_h.pl
$ ./perl -Ilib regen/regcomp.pl regnodes.h
23 lines
635 B
C
23 lines
635 B
C
/*
|
|
*
|
|
* perlapi.h
|
|
*
|
|
* Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
|
|
* 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
|
|
*
|
|
* You may distribute under the terms of either the GNU General Public
|
|
* License or the Artistic License, as specified in the README file.
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* This file used to declare accessor functions for Perl variables
|
|
* when PERL_GLOBAL_STRUCT was enabled, but that no longer exists.
|
|
* This file is kept for backwards compatibility with XS code that
|
|
* might include it.
|
|
*/
|
|
#ifndef __perlapi_h__
|
|
#define __perlapi_h__
|
|
|
|
#endif /* __perlapi_h__ */
|