diff options
| author | Pavel Janík | 2001-10-08 04:52:12 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-10-08 04:52:12 +0000 |
| commit | f98d41f520c8e2de0607a9e1acbc3e145842446b (patch) | |
| tree | 74a89a11326d1daf9217226206947d779bff0bbc | |
| parent | b0fbf754224ee5e14ac3a704924c54eea47d0732 (diff) | |
| download | emacs-f98d41f520c8e2de0607a9e1acbc3e145842446b.tar.gz emacs-f98d41f520c8e2de0607a9e1acbc3e145842446b.zip | |
Include config.h, not ../src/config.h and systime.h, not ../src/systime.h.
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/profile.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index de50d46e207..21dd2f7e95f 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-10-07 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | ||
| 2 | |||
| 3 | * profile.c: Include config.h, not ../src/config.h. | ||
| 4 | Include systime.h, not ../src/systime.h. | ||
| 5 | |||
| 1 | 2001-10-01 Alexander Zhuckov <zuav@int.spb.ru> | 6 | 2001-10-01 Alexander Zhuckov <zuav@int.spb.ru> |
| 2 | 7 | ||
| 3 | * ebrowse.c (struct alias): Add two new struct members: NAMESP and | 8 | * ebrowse.c (struct alias): Add two new struct members: NAMESP and |
diff --git a/lib-src/profile.c b/lib-src/profile.c index 3c76f8ed183..9c3ebcef539 100644 --- a/lib-src/profile.c +++ b/lib-src/profile.c | |||
| @@ -30,9 +30,9 @@ Boston, MA 02111-1307, USA. */ | |||
| 30 | ** abstraction : a stopwatch | 30 | ** abstraction : a stopwatch |
| 31 | ** operations: reset_watch, get_time | 31 | ** operations: reset_watch, get_time |
| 32 | */ | 32 | */ |
| 33 | #include <../src/config.h> | 33 | #include <config.h> |
| 34 | #include <stdio.h> | 34 | #include <stdio.h> |
| 35 | #include <../src/systime.h> | 35 | #include <systime.h> |
| 36 | 36 | ||
| 37 | static EMACS_TIME TV1, TV2; | 37 | static EMACS_TIME TV1, TV2; |
| 38 | static int watch_not_started = 1; /* flag */ | 38 | static int watch_not_started = 1; /* flag */ |