Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 45f039e

Browse files
committedNov 5, 2022
WS Cleanup Stage #6 - reflow C comments (1)
1 parent 0abefab commit 45f039e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+5427
-5775
lines changed
 

‎EXTERN.h

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
/* EXTERN.h
22
*
3-
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999,
4-
* 2000, 2001, by Larry Wall and others
3+
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000,
4+
* 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
5+
* 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 by
6+
* Larry Wall and others
57
*
68
* You may distribute under the terms of either the GNU General Public
79
* License or the Artistic License, as specified in the README file.
8-
*
910
*/
1011

1112
/*
12-
* EXT: designates a global var which is defined in perl.h
13+
* EXT: designates a global var which is defined in perl.h
1314
*
14-
* dEXT: designates a global var which is defined in another
15-
* file, so we can't count on finding it in perl.h
16-
* (this practice should be avoided).
17-
*/
15+
* dEXT: designates a global var which is defined in another file, so we can't
16+
* count on finding it in perl.h (this practice should be avoided).
17+
*/
1818
#undef EXT
1919
#undef dEXT
2020
#undef EXTCONST
@@ -24,24 +24,24 @@
2424
/* miniperl should not export anything */
2525
# if defined(PERL_IS_MINIPERL)
2626
# define EXT extern
27-
# define dEXT
27+
# define dEXT
2828
# define EXTCONST extern const
2929
# define dEXTCONST const
3030
# elif defined(PERLDLL)
3131
# define EXT EXTERN_C __declspec(dllexport)
32-
# define dEXT
32+
# define dEXT
3333
# define EXTCONST EXTERN_C __declspec(dllexport) const
3434
# define dEXTCONST const
3535
# else
3636
# define EXT EXTERN_C __declspec(dllimport)
37-
# define dEXT
37+
# define dEXT
3838
# define EXTCONST EXTERN_C __declspec(dllimport) const
3939
# define dEXTCONST const
4040
# endif
4141
# else
4242
# if defined(__CYGWIN__) && defined(USEIMPORTLIB)
4343
# define EXT extern __declspec(dllimport)
44-
# define dEXT
44+
# define dEXT
4545
# define EXTCONST extern __declspec(dllimport) const
4646
# define dEXTCONST const
4747
# else

‎INTERN.h

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
/* INTERN.h
22
*
3-
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1998, 2000, 2001,
4-
* by Larry Wall and others
3+
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1998, 2000, 2001, by
4+
* Larry Wall and others
55
*
66
* You may distribute under the terms of either the GNU General Public
77
* License or the Artistic License, as specified in the README file.
8-
*
98
*/
109

1110
/*
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-
*/
11+
* EXT designates a global var which is defined in perl.h dEXT designates
12+
* a global var which is defined in another file, so we can't count on
13+
* finding it in perl.h (this practice should be avoided).
14+
*/
1715
#undef EXT
1816
#undef dEXT
1917
#undef EXTCONST
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Failed to load comments.