diff options
author | Paul Eggert <eggert@twinsun.com> | 1999-10-19 07:17:20 +0000 |
---|---|---|
committer | Paul Eggert <eggert@twinsun.com> | 1999-10-19 07:17:20 +0000 |
commit | 4ee9629e2beb7a870ab30509d547b6845ef645cf (patch) | |
tree | ba84e985b8ba9da225ebba7cb9f3326556b335a4 /lib-src/profile.c | |
parent | 09ed9b3cac4585c1bcaf32c7aefd43e8112a4de7 (diff) | |
download | emacs-4ee9629e2beb7a870ab30509d547b6845ef645cf.tar.gz |
Add support for large files. Merge glibc 2.1.2.
* b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
movemail.c, pop.c:
Do not include <stdlib.h>, as <config.h> does this now.
* b2m.c, emacsserver.c, etags.c, profile.c:
Include <config.h> before any system include files.
* emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
test-distrib.c:
(read, write, open, close): Do not undef.
* getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
(const): Do not define if HAVE_CONFIG_H; that's config.h's job.
* getopt.h: Adopt glibc 2.1.2.
Diffstat (limited to 'lib-src/profile.c')
-rw-r--r-- | lib-src/profile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/profile.c b/lib-src/profile.c index 2b27ce06119..3c76f8ed183 100644 --- a/lib-src/profile.c +++ b/lib-src/profile.c @@ -1,5 +1,5 @@ /* profile.c --- generate periodic events for profiling of Emacs Lisp code. - Copyright (C) 1992, 1994 Free Software Foundation, Inc. + Copyright (C) 1992, 1994, 1999 Free Software Foundation, Inc. Author: Boaz Ben-Zvi <boaz@lcs.mit.edu> @@ -30,8 +30,8 @@ Boston, MA 02111-1307, USA. */ ** abstraction : a stopwatch ** operations: reset_watch, get_time */ -#include <stdio.h> #include <../src/config.h> +#include <stdio.h> #include <../src/systime.h> static EMACS_TIME TV1, TV2; |