diff options
Diffstat (limited to 'vms')
-rw-r--r-- | vms/ChangeLog | 5 | ||||
-rw-r--r-- | vms/vms-conf.h | 6 | ||||
-rw-r--r-- | vms/vmstest.com | 7 |
3 files changed, 11 insertions, 7 deletions
diff --git a/vms/ChangeLog b/vms/ChangeLog index 9fe0f0f0..88a4bf88 100644 --- a/vms/ChangeLog +++ b/vms/ChangeLog @@ -1,3 +1,8 @@ +2011-10-25 Anders Wallin <anders_s_wallin@yahoo.se> + + * vmstest.com (posix2008sub): Added as specific test in order to + use --posix option. + 2011-06-24 Arnold D. Robbins <arnold@skeeve.com> * vmsbuild.com (REL, PATCHLVL): Move to 4.0.0. diff --git a/vms/vms-conf.h b/vms/vms-conf.h index 183b7245..cbdc9508 100644 --- a/vms/vms-conf.h +++ b/vms/vms-conf.h @@ -407,9 +407,6 @@ /* Define to 1 if *printf supports %F format */ #undef PRINTF_HAS_F_FORMAT -/* Define to 1 if the C compiler supports function prototypes. */ -#define PROTOTYPES 1 - /* Define as the return type of signal handlers (`int' or `void'). */ #define RETSIGTYPE void @@ -481,9 +478,6 @@ # undef _TANDEM_SOURCE #endif -/* Define like PROTOTYPES; this can be used by system headers. */ -#define __PROTOTYPES 1 - /* Define to empty if `const' does not conform to ANSI C. */ #undef const diff --git a/vms/vmstest.com b/vms/vmstest.com index 0ca3e0f1..d4d3d8a9 100644 --- a/vms/vmstest.com +++ b/vms/vmstest.com @@ -312,7 +312,6 @@ $ofmta: $paramtyp: $patsplit: $pcntplus: -$posix2008sub: $printf1: $procinfs: $prt1eval: @@ -1078,6 +1077,12 @@ $ igncascmp space.ok _space.tmp $ if $status then rm _space.tmp; $ return $ +$posix2008sub: echo "posix2008sub" +$ gawk --posix -f posix2008sub.awk >_posix2008sub.tmp +$ cmp posix2008sub.ok _posix2008sub.tmp +$ if $status then rm _posix2008sub.tmp; +$ return +$ $printf0: echo "printf0" $ gawk --posix -f printf0.awk >_printf0.tmp $ cmp printf0.ok _printf0.tmp |