diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-03-28 22:51:26 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-03-28 22:51:26 +0200 |
commit | 5d611e04506c5d34c823ea06fc4b27ff715a493e (patch) | |
tree | 7ff31eb069b445f8bb880e1c1bc681bee73419bf /src/w32.c | |
parent | 97dababa47e5b2133f18f05f415dcf42c7066f84 (diff) | |
download | emacs-5d611e04506c5d34c823ea06fc4b27ff715a493e.tar.gz |
Use 'restrict' in gettimeofday arguments, and make ms-w32.h compatible.
Diffstat (limited to 'src/w32.c')
-rw-r--r-- | src/w32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32.c b/src/w32.c index 6933ddfed83..0fa5970124a 100644 --- a/src/w32.c +++ b/src/w32.c @@ -2395,7 +2395,7 @@ get_emacs_configuration_options (void) /* Emulate gettimeofday (Ulrich Leodolter, 1/11/95). */ int -gettimeofday (struct timeval *tv, struct timezone *tz) +gettimeofday (struct timeval *restrict tv, struct timezone *restrict tz) { struct _timeb tb; _ftime (&tb); |