summaryrefslogtreecommitdiffstats
path: root/src/translators/btparse/dlgauto.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translators/btparse/dlgauto.h')
-rw-r--r--src/translators/btparse/dlgauto.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/translators/btparse/dlgauto.h b/src/translators/btparse/dlgauto.h
index efcc3b2..fb6d9a6 100644
--- a/src/translators/btparse/dlgauto.h
+++ b/src/translators/btparse/dlgauto.h
@@ -240,9 +240,9 @@ zzreplchar(zzchar_t c)
/* replace the string s for the reg. expr last matched and in the buffer */
void
-zzreplstr(register zzchar_t *s)
+zzreplstr(zzchar_t *s)
{
- register zzchar_t *l= &zzlextext[zzbufsize -1];
+ zzchar_t *l= &zzlextext[zzbufsize -1];
zznextpos = zzbegexpr;
if (s){
@@ -264,7 +264,7 @@ zzreplstr(register zzchar_t *s)
void
zzgettok()
{
- register int state, newstate;
+ int state, newstate;
/* last space reserved for the null char */
zzchar_t *lastpos; /* GPW 1997/09/05 (removed 'register' */