aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/profile.c
diff options
context:
space:
mode:
authorJoakim Verona2011-06-16 00:22:07 +0200
committerJoakim Verona2011-06-16 00:22:07 +0200
commita7513ade3bc0fe79430d5541d88c9dcda0932bec (patch)
tree4383951ba698a11e9f8933a9d8c72e00aa872a10 /lib-src/profile.c
parent4bd51ad5c3445b644dfb017d5b57b10a90aa325f (diff)
parent4bba86e6210a74326e843a8fdc8409127105e1fe (diff)
downloademacs-a7513ade3bc0fe79430d5541d88c9dcda0932bec.tar.gz
emacs-a7513ade3bc0fe79430d5541d88c9dcda0932bec.zip
merge from upstream
Diffstat (limited to 'lib-src/profile.c')
-rw-r--r--lib-src/profile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/profile.c b/lib-src/profile.c
index 9ce9993f4b1..086d8cc3e9d 100644
--- a/lib-src/profile.c
+++ b/lib-src/profile.c
@@ -38,7 +38,7 @@ static char time_string[30];
38 38
39/* Reset the stopwatch to zero. */ 39/* Reset the stopwatch to zero. */
40 40
41void 41static void
42reset_watch (void) 42reset_watch (void)
43{ 43{
44 EMACS_GET_TIME (TV1); 44 EMACS_GET_TIME (TV1);
@@ -49,7 +49,7 @@ reset_watch (void)
49 is returned as a string with the format <seconds>.<micro-seconds> 49 is returned as a string with the format <seconds>.<micro-seconds>
50 If reset_watch was not called yet, exit. */ 50 If reset_watch was not called yet, exit. */
51 51
52char * 52static char *
53get_time (void) 53get_time (void)
54{ 54{
55 if (watch_not_started) 55 if (watch_not_started)