summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-06-09 18:28:01 -0600
committerKarl Williamson <khw@cpan.org>2022-06-16 21:04:01 -0600
commit934902b872811e934819035e158b3a8b27151945 (patch)
tree3cfd1728de3df35afd91e2c75493b85bd989c54a /handy.h
parentf757874dac95bb608303f02ed7a2eeeaf1ec116b (diff)
downloadperl-934902b872811e934819035e158b3a8b27151945.tar.gz
handy.h: White space only
These shouldn't be indented
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/handy.h b/handy.h
index c78246e70c..72939d86d1 100644
--- a/handy.h
+++ b/handy.h
@@ -270,17 +270,17 @@ don't, so that you can portably take advantage of this C99 feature.
=cut
*/
-# ifdef I_STDINT
+#ifdef I_STDINT
typedef int_fast8_t PERL_INT_FAST8_T;
typedef uint_fast8_t PERL_UINT_FAST8_T;
typedef int_fast16_t PERL_INT_FAST16_T;
typedef uint_fast16_t PERL_UINT_FAST16_T;
-# else
+#else
typedef int PERL_INT_FAST8_T;
typedef unsigned int PERL_UINT_FAST8_T;
typedef int PERL_INT_FAST16_T;
typedef unsigned int PERL_UINT_FAST16_T;
-# endif
+#endif
/* log(2) (i.e., log base 10 of 2) is pretty close to 0.30103, just in case
* anyone is grepping for it. So BIT_DIGITS gives the number of decimal digits