summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-09-07 22:01:16 +0200
committerJames E Keenan <jkeenan@cpan.org>2022-12-30 12:44:32 -0500
commit772be2bde953d71614029d2bd28ba946ed8034bd (patch)
tree24a4e123f756a3fa0045a72b133a4d2e22651f00 /handy.h
parent9f94aa808f4ce3fff3583b9201f7ad4a67a7d5b9 (diff)
downloadperl-772be2bde953d71614029d2bd28ba946ed8034bd.tar.gz
handy.h - fix typo in comment
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/handy.h b/handy.h
index 199580be5a..2e6d736550 100644
--- a/handy.h
+++ b/handy.h
@@ -161,7 +161,7 @@ required, but is kept for backwards compatibility.
#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || (defined(__SUNPRO_C)) /* C99 or close enough. */
# define FUNCTION__ __func__
# define SAFE_FUNCTION__ __func__
-#elif (defined(__DECC_VER)) /* Tru64 or VMS, and strict C89 being used, but not modern enough cc (in Tur64, -c99 not known, only -std1). */
+#elif (defined(__DECC_VER)) /* Tru64 or VMS, and strict C89 being used, but not modern enough cc (in Tru64, -c99 not known, only -std1). */
# define FUNCTION__ ("")
# define SAFE_FUNCTION__ ("UNKNOWN")
#else