aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-06-20 13:08:48 +0000
committerDave Love2000-06-20 13:08:48 +0000
commit83925baabc72bcc05aefe9124fb768a3de60a33a (patch)
tree73e06baefdab389887482d2a5c6315d3899e27e2 /src
parent1952184fe5b03e44274921eb27e40264a9349abe (diff)
downloademacs-83925baabc72bcc05aefe9124fb768a3de60a33a.tar.gz
emacs-83925baabc72bcc05aefe9124fb768a3de60a33a.zip
(x_set_tool_bar_lines, free_frame_xic, compose_text, getenv, ctime)
(getwd): Removed. (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 7793908e912..cdaad4f1cf6 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2841,13 +2841,9 @@ extern int getloadavg P_ ((double *, int));
2841 2841
2842#ifdef HAVE_X_WINDOWS 2842#ifdef HAVE_X_WINDOWS
2843/* Defined in xfns.c */ 2843/* Defined in xfns.c */
2844extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
2845extern void syms_of_xfns P_ ((void)); 2844extern void syms_of_xfns P_ ((void));
2846extern void init_xfns P_ ((void)); 2845extern void init_xfns P_ ((void));
2847EXFUN (Fxw_display_color_p, 1); 2846EXFUN (Fxw_display_color_p, 1);
2848#ifdef HAVE_X_I18N
2849extern void free_frame_xic P_ ((struct frame *));
2850#endif
2851/* Fixme: x_defined_color needs declaring, but needs FRAME_PTR and XColor. */ 2847/* Fixme: x_defined_color needs declaring, but needs FRAME_PTR and XColor. */
2852#endif /* HAVE_X_WINDOWS */ 2848#endif /* HAVE_X_WINDOWS */
2853 2849
@@ -2859,18 +2855,15 @@ extern void syms_of_xterm P_ ((void));
2859 2855
2860/* Defined in getloadavg.c */ 2856/* Defined in getloadavg.c */
2861extern int getloadavg P_ ((double [], int)); 2857extern int getloadavg P_ ((double [], int));
2862 2858
2863/* Defined in composite.c */
2864extern void compose_text P_ ((int, int, Lisp_Object, Lisp_Object, Lisp_Object));
2865/* Nonzero means Emacs has already been initialized. 2859/* Nonzero means Emacs has already been initialized.
2866 Used during startup to detect startup of dumped Emacs. */ 2860 Used during startup to detect startup of dumped Emacs. */
2867extern int initialized; 2861extern int initialized;
2868 2862
2869extern int immediate_quit; /* Nonzero means ^G can quit instantly */ 2863extern int immediate_quit; /* Nonzero means ^G can quit instantly */
2870 2864
2871extern char *getenv (), *ctime (), *getwd (); 2865extern POINTER_TYPE *xmalloc P_ ((int));
2872extern long *xmalloc (), *xrealloc (); 2866extern POINTER_TYPE *xrealloc P_ ((POINTER_TYPE *, int));
2873extern void xfree ();
2874extern char *xstrdup P_ ((char *)); 2867extern char *xstrdup P_ ((char *));
2875 2868
2876extern char *egetenv P_ ((char *)); 2869extern char *egetenv P_ ((char *));