1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

util/dttypes: remove register keyword

This commit is contained in:
Jon Trulson 2018-06-27 18:02:47 -06:00
parent 1c822c2f0b
commit 53086aa9df

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)