diff options
Diffstat (limited to 'src/hyper')
-rw-r--r-- | src/hyper/hthits.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hyper/hthits.c b/src/hyper/hthits.c index 0dd712c5..ce277e65 100644 --- a/src/hyper/hthits.c +++ b/src/hyper/hthits.c @@ -98,7 +98,7 @@ badDB(void) static void untexbuf(register char* s) { - register char *d = s; + char *d = s; while (*s) switch (*s) { @@ -176,7 +176,7 @@ splitpage(char* buf, char** ptitle, char** pbody) static void squirt(char* s, int n) { - register char *t, *e; + char *t, *e; int c; c = s[n]; |