summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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