comparison src/emacs.c @ 647:b39c14581166

[xemacs-hg @ 2001-08-13 04:45:47 by ben] removal of unsigned, size_t, etc.
author ben
date Mon, 13 Aug 2001 04:46:48 +0000
parents af57a77cbc92
children ce0b3f2eff35
comparison
equal deleted inserted replaced
646:00c54252fe4f 647:b39c14581166
333 at startup. */ 333 at startup. */
334 334
335 uintptr_t bss_end = 0; 335 uintptr_t bss_end = 0;
336 #endif 336 #endif
337 337
338 /* Number of bytes of writable memory we can expect to be able to get */ 338 /* Number of bytes of writable memory we can expect to be able to get:
339 Leave this as an unsigned int because it could potentially be 4G */
339 unsigned int lim_data; 340 unsigned int lim_data;
340 341
341 /* WARNING! 342 /* WARNING!
342 343
343 Some LISP-visible command-line options are set by XEmacs _before_ the 344 Some LISP-visible command-line options are set by XEmacs _before_ the
461 static JMP_BUF run_temacs_catch; 462 static JMP_BUF run_temacs_catch;
462 463
463 static int run_temacs_argc; 464 static int run_temacs_argc;
464 static Extbyte **run_temacs_argv; 465 static Extbyte **run_temacs_argv;
465 static Extbyte *run_temacs_args; 466 static Extbyte *run_temacs_args;
466 static size_t run_temacs_argv_size; 467 static int run_temacs_argv_size;
467 static size_t run_temacs_args_size; 468 static int run_temacs_args_size;
468 469
469 static void shut_down_emacs (int sig, Lisp_Object stuff, int no_auto_save); 470 static void shut_down_emacs (int sig, Lisp_Object stuff, int no_auto_save);
470 471
471 static void 472 static void
472 ensure_no_quitting_from_now_on (void) 473 ensure_no_quitting_from_now_on (void)