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

dtaction: remove register keyword

This commit is contained in:
Jon Trulson 2018-06-27 15:58:39 -06:00
parent b0fd79a680
commit 3e81f467be

View file

@ -151,8 +151,8 @@ extern char *_DtGetMessage(char *filename, int set, int n, char *s);
#endif
Boolean _DtWmStringsAreEqual(
register char *in_str,
register char *test_str) ;
char *in_str,
char *test_str) ;
void CheckForDone(
XtPointer clientData,
XtIntervalId id) ;
@ -590,7 +590,7 @@ AddSuLog(
char *toString;
struct tm *localtime ();
register FILE * f;
FILE * f;
struct stat st;
time_t timenow;
struct tm *now;
@ -658,8 +658,8 @@ CleanPath(
char *Path )
{
register char *StrippedPath;
register char *PathHead;
char *StrippedPath;
char *PathHead;
StrippedPath = PathHead = Path;