util/dttypes: remove register keyword

This commit is contained in:
Jon Trulson 2018-06-27 18:02:47 -06:00
parent 1c822c2f0b
commit 53086aa9df
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@
#include <stdio.h>
#include <Xm/Xm.h>
#include <X11/Shell.h>
#define INIT register char *sp = instring;
#define INIT char *sp = instring;
#define GETC() (*sp++)
#define PEEKC() (*sp)
#define UNGETC(c) (--sp)