X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/7815fe1985833c57457882b415a29358991dabdc..0f054abcece17599955b8ee34b4f8d7eec134a70:/lib-src/profile.c diff --git a/lib-src/profile.c b/lib-src/profile.c index 37653e63c4..086d8cc3e9 100644 --- a/lib-src/profile.c +++ b/lib-src/profile.c @@ -1,6 +1,5 @@ /* profile.c --- generate periodic events for profiling of Emacs Lisp code. - Copyright (C) 1992, 1994, 1999, 2001, 2002, 2003, 2004, 2005, 2006, - 2007, 2008, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 1992, 1994, 1999, 2001-2011 Free Software Foundation, Inc. Author: Boaz Ben-Zvi @@ -39,7 +38,7 @@ static char time_string[30]; /* Reset the stopwatch to zero. */ -void +static void reset_watch (void) { EMACS_GET_TIME (TV1); @@ -50,7 +49,7 @@ reset_watch (void) is returned as a string with the format . If reset_watch was not called yet, exit. */ -char * +static char * get_time (void) { if (watch_not_started) @@ -102,7 +101,5 @@ main (void) exit (EXIT_FAILURE); } -/* arch-tag: 8db68f7e-2322-4944-a315-dba349bdbf39 - (do not change this comment) */ /* profile.c ends here */