diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 20 | ||||
| -rw-r--r-- | src/lisp.h | 2 |
2 files changed, 22 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6eb18889c3a..6933cd190e3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,23 @@ | |||
| 1 | 2000-06-20 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * keyboard.h (poll_for_input_1): Declare. | ||
| 4 | |||
| 5 | * getloadavg.c: Don't define NLIST_STRUCT (handled by configure). | ||
| 6 | |||
| 7 | * alloc.c (xmalloc, xrealloc, xfree): Define using POINTER_TYPE. | ||
| 8 | |||
| 9 | * doprnt.c: Don't declare xmalloc, xrealloc. | ||
| 10 | |||
| 11 | * lisp.h (x_set_tool_bar_lines, free_frame_xic, compose_text) | ||
| 12 | (getenv, ctime, getwd): Removed. | ||
| 13 | (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE. | ||
| 14 | |||
| 15 | * xterm.h: Remove duplicate prototypes. Declare free_frame_xic, | ||
| 16 | x_set_tool_bar_lines. | ||
| 17 | |||
| 18 | * config.in: Add HAVE_GETWD. Move some definitions above | ||
| 19 | machine/system includes. | ||
| 20 | |||
| 1 | 2000-06-20 Kenichi Handa <handa@etl.go.jp> | 21 | 2000-06-20 Kenichi Handa <handa@etl.go.jp> |
| 2 | 22 | ||
| 3 | * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1. | 23 | * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1. |
diff --git a/src/lisp.h b/src/lisp.h index cdaad4f1cf6..a079771d833 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2864,6 +2864,8 @@ extern int immediate_quit; /* Nonzero means ^G can quit instantly */ | |||
| 2864 | 2864 | ||
| 2865 | extern POINTER_TYPE *xmalloc P_ ((int)); | 2865 | extern POINTER_TYPE *xmalloc P_ ((int)); |
| 2866 | extern POINTER_TYPE *xrealloc P_ ((POINTER_TYPE *, int)); | 2866 | extern POINTER_TYPE *xrealloc P_ ((POINTER_TYPE *, int)); |
| 2867 | extern void xfree P_ ((POINTER_TYPE *)); | ||
| 2868 | |||
| 2867 | extern char *xstrdup P_ ((char *)); | 2869 | extern char *xstrdup P_ ((char *)); |
| 2868 | 2870 | ||
| 2869 | extern char *egetenv P_ ((char *)); | 2871 | extern char *egetenv P_ ((char *)); |