aboutsummaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorJohn Malmberg <wb8tyw@qsl.net>2020-02-04 07:55:19 -0600
committerJohn Malmberg <wb8tyw@qsl.net>2020-02-04 07:55:19 -0600
commit87bc72662b25f10578041eaad3455639cbd812b1 (patch)
treedad4af4feed1a928d00797b6f445e0969a9b5a4a /support
parent2746518fd96f9a784d5178b6c7337ad9b7360e30 (diff)
downloadegawk-87bc72662b25f10578041eaad3455639cbd812b1.tar.gz
egawk-87bc72662b25f10578041eaad3455639cbd812b1.tar.bz2
egawk-87bc72662b25f10578041eaad3455639cbd812b1.zip
Remove OpenVMS code from dfa.c
Diffstat (limited to 'support')
-rw-r--r--support/ChangeLog5
-rw-r--r--support/dfa.c5
2 files changed, 5 insertions, 5 deletions
diff --git a/support/ChangeLog b/support/ChangeLog
index 202f9f02..96da5cb4 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,8 @@
+2020-02-01 John E. Malmberg <wb8tyw@qsl.net>
+
+ * dfa.c: Remove OpenVMS specific code. OpenVMS build
+ will generate a stdint.h if needed.
+
2020-02-01 Arnold D. Robbins <arnold@skeeve.com>
* dfa.c: Update from GNULIB. Should help Vax/VMS.
diff --git a/support/dfa.c b/support/dfa.c
index d112443f..9939d228 100644
--- a/support/dfa.c
+++ b/support/dfa.c
@@ -28,12 +28,7 @@
#include <assert.h>
#include <ctype.h>
-#ifndef VMS
#include <stdint.h>
-#else
-#define SIZE_MAX __INT32_MAX
-#define PTRDIFF_MAX __INT32_MAX
-#endif
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>