diff options
author | Klaus Kaempf <kkaempf@progis.de> | 1998-01-29 09:04:10 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-29 02:04:10 -0700 |
commit | 9d21ee77f44afdbe657ff4f8ea2511be7d3d4c28 (patch) | |
tree | 35f113c439cc4c9cfc941c28501b5402bd601ee7 /gcc/cccp.c | |
parent | eeeb91c5bf560937fb084cad9159f93a52941c41 (diff) | |
download | gcc-9d21ee77f44afdbe657ff4f8ea2511be7d3d4c28.zip gcc-9d21ee77f44afdbe657ff4f8ea2511be7d3d4c28.tar.gz gcc-9d21ee77f44afdbe657ff4f8ea2511be7d3d4c28.tar.bz2 |
cccp.c (SYS$SEARCH, SYS$PARSE): Write as upper-case.
* cccp.c (SYS$SEARCH, SYS$PARSE): Write as upper-case.
* vmsconfig.com: Remove bytecode references.
* alpha/vms.h (PREFIX): Define.
* alpha/vms.h (ASM_OUTPUT_ALIGNED_COMMON): Remove.
From-SVN: r17547
Diffstat (limited to 'gcc/cccp.c')
-rw-r--r-- | gcc/cccp.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -10259,7 +10259,7 @@ VMS_open (fname, flags, prot) #include <fab.h> #include <nam.h> -extern unsigned long sys$parse(), sys$search(); +extern unsigned long SYS$PARSE(), SYS$SEARCH(); /* Work around another library bug. If a file is located via a searchlist, and if the device it's on is not the same device as the one specified @@ -10306,8 +10306,8 @@ VMS_stat (name, statbuf) { struct FAB fab; struct NAM nam; - char exp_nam[NAM$C_MAXRSS+1], /* expanded name buffer for sys$parse */ - res_nam[NAM$C_MAXRSS+1]; /* resultant name buffer for sys$search */ + char exp_nam[NAM$C_MAXRSS+1], /* expanded name buffer for SYS$PARSE */ + res_nam[NAM$C_MAXRSS+1]; /* resultant name buffer for SYS$SEARCH */ fab = cc$rms_fab; fab.fab$l_fna = (char *) name; @@ -10317,9 +10317,9 @@ VMS_stat (name, statbuf) nam.nam$l_esa = exp_nam, nam.nam$b_ess = sizeof exp_nam - 1; nam.nam$l_rsa = res_nam, nam.nam$b_rss = sizeof res_nam - 1; nam.nam$b_nop = NAM$M_PWD | NAM$M_NOCONCEAL; - if (sys$parse (&fab) & 1) + if (SYS$PARSE (&fab) & 1) { - if (sys$search (&fab) & 1) + if (SYS$SEARCH (&fab) & 1) { res_nam[nam.nam$b_rsl] = '\0'; result = stat (res_nam, statbuf); @@ -10327,7 +10327,7 @@ VMS_stat (name, statbuf) /* Clean up searchlist context cached by the system. */ nam.nam$b_nop = NAM$M_SYNCHK; fab.fab$l_fna = 0, fab.fab$b_fns = 0; - (void) sys$parse (&fab); + (void) SYS$PARSE (&fab); } } |