Skip to content

Commit

Permalink
WS Cleanup Stage #6 - reflow C comments (1)
Browse files Browse the repository at this point in the history
  • Loading branch information
demerphq committed Nov 5, 2022
1 parent 0abefab commit 45f039e
Show file tree
Hide file tree
Showing 51 changed files with 5,427 additions and 5,775 deletions.
24 changes: 12 additions & 12 deletions EXTERN.h
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
/* EXTERN.h
*
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999,
* 2000, 2001, by Larry Wall and others
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000,
* 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
* 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 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.
*
*/

/*
* EXT: designates a global var which is defined in perl.h
* EXT: designates a global var which is defined in perl.h
*
* dEXT: designates a global var which is defined in another
* file, so we can't count on finding it in perl.h
* (this practice should be avoided).
*/
* dEXT: designates a global var which is defined in another file, so we can't
* count on finding it in perl.h (this practice should be avoided).
*/
#undef EXT
#undef dEXT
#undef EXTCONST
Expand All @@ -24,24 +24,24 @@
/* miniperl should not export anything */
# if defined(PERL_IS_MINIPERL)
# define EXT extern
# define dEXT
# define dEXT
# define EXTCONST extern const
# define dEXTCONST const
# elif defined(PERLDLL)
# define EXT EXTERN_C __declspec(dllexport)
# define dEXT
# define dEXT
# define EXTCONST EXTERN_C __declspec(dllexport) const
# define dEXTCONST const
# else
# define EXT EXTERN_C __declspec(dllimport)
# define dEXT
# define dEXT
# define EXTCONST EXTERN_C __declspec(dllimport) const
# define dEXTCONST const
# endif
# else
# if defined(__CYGWIN__) && defined(USEIMPORTLIB)
# define EXT extern __declspec(dllimport)
# define dEXT
# define dEXT
# define EXTCONST extern __declspec(dllimport) const
# define dEXTCONST const
# else
Expand Down
14 changes: 6 additions & 8 deletions INTERN.h
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
/* INTERN.h
*
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1998, 2000, 2001,
* by Larry Wall and others
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1998, 2000, 2001, 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.
*
*/

/*
* EXT designates a global var which is defined in perl.h
* dEXT designates a global var which is defined in another
* file, so we can't count on finding it in perl.h
* (this practice should be avoided).
*/
* EXT designates a global var which is defined in perl.h dEXT designates
* a global var which is defined in another file, so we can't count on
* finding it in perl.h (this practice should be avoided).
*/
#undef EXT
#undef dEXT
#undef EXTCONST
Expand Down
Loading

0 comments on commit 45f039e

Please sign in to comment.