comparison src/emacs.c @ 257:65c19d2020f7 r20-5b27

Import from CVS: tag r20-5b27
author cvs
date Mon, 13 Aug 2007 10:22:03 +0200
parents 084402c475ba
children 11cf20601dec
comparison
equal deleted inserted replaced
256:19076a51efde 257:65c19d2020f7
65 /* For PATH_EXEC */ 65 /* For PATH_EXEC */
66 #include "paths.h" 66 #include "paths.h"
67 67
68 extern void memory_warnings (void *, void (*warnfun) (CONST char *)); 68 extern void memory_warnings (void *, void (*warnfun) (CONST char *));
69 69
70 #ifndef SYSTEM_MALLOC 70 #if !defined SYSTEM_MALLOC && !defined DOUG_LEA_MALLOC
71 extern void *(*__malloc_hook)(size_t); 71 extern void *(*__malloc_hook)(size_t);
72 extern void *(*__realloc_hook)(void *, size_t); 72 extern void *(*__realloc_hook)(void *, size_t);
73 extern void (*__free_hook)(void *); 73 extern void (*__free_hook)(void *);
74 #endif /* not SYSTEM_MALLOC */ 74 #endif /* not SYSTEM_MALLOC && not DOUG_LEA_MALLOC */
75 75
76 /* Command line args from shell, as list of strings */ 76 /* Command line args from shell, as list of strings */
77 Lisp_Object Vcommand_line_args; 77 Lisp_Object Vcommand_line_args;
78 78
79 /* Set nonzero after XEmacs has started up the first time. 79 /* Set nonzero after XEmacs has started up the first time.