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 #endif
Boolean _DtWmStringsAreEqual( Boolean _DtWmStringsAreEqual(
register char *in_str, char *in_str,
register char *test_str) ; char *test_str) ;
void CheckForDone( void CheckForDone(
XtPointer clientData, XtPointer clientData,
XtIntervalId id) ; XtIntervalId id) ;
@ -590,7 +590,7 @@ AddSuLog(
char *toString; char *toString;
struct tm *localtime (); struct tm *localtime ();
register FILE * f; FILE * f;
struct stat st; struct stat st;
time_t timenow; time_t timenow;
struct tm *now; struct tm *now;
@ -658,8 +658,8 @@ CleanPath(
char *Path ) char *Path )
{ {
register char *StrippedPath; char *StrippedPath;
register char *PathHead; char *PathHead;
StrippedPath = PathHead = Path; StrippedPath = PathHead = Path;