aboutsummaryrefslogtreecommitdiff
path: root/contrib/one-true-awk
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2021-07-22 02:17:50 +0000
committerWarner Losh <imp@FreeBSD.org>2021-07-22 02:17:50 +0000
commit2929813c4f89388272a8bc034b09e72c5bf4e9c7 (patch)
tree81725867ab66f33666694fee73dc36745f4ab332 /contrib/one-true-awk
parent2b720db8d409f6fcdffa7f06b1d8c1b981435a83 (diff)
downloadsrc-2929813c4f89388272a8bc034b09e72c5bf4e9c7.tar.gz
src-2929813c4f89388272a8bc034b09e72c5bf4e9c7.zip
Diffstat (limited to 'contrib/one-true-awk')
-rw-r--r--contrib/one-true-awk/lib.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/contrib/one-true-awk/lib.c b/contrib/one-true-awk/lib.c
index c2da07a7ba62..6bfe5e8eaad9 100644
--- a/contrib/one-true-awk/lib.c
+++ b/contrib/one-true-awk/lib.c
@@ -798,16 +798,11 @@ bool is_valid_number(const char *s, bool trailing_stuff_ok,
* where hex strings were treated as numbers in nawk the whole time it has been
* in FreeBSD (since 2001). The POSIX 2001 through 2004 standards mandated this
* behavior and the current standard allows it. Deviate from upstream by restoring
- * the prior FreeBSD behavior, but warning that it differs.
+ * the prior FreeBSD behavior.
*/
+#if 0
// no hex floating point, sorry
if (s[0] == '0' && tolower(s[1]) == 'x')
-#ifdef __FreeBSD__
- { static int warned = 0; /* Only warn the first time */
- if (warned++ == 0)
- WARNING("Script depends on old '0x' hex conversion behavior");
- }
-#else
return false;
#endif