comparison src/ntheap.c @ 272:c5d627a313b1 r21-0b34

Import from CVS: tag r21-0b34
author cvs
date Mon, 13 Aug 2007 10:28:48 +0200
parents 41ff10fd062f
children c42ec1d1cded
comparison
equal deleted inserted replaced
271:c7b7086b0a39 272:c5d627a313b1
21 Geoff Voelker (voelker@cs.washington.edu) 7-29-94 */ 21 Geoff Voelker (voelker@cs.washington.edu) 7-29-94 */
22 22
23 /* Adapted for XEmacs by David Hobley <david@spook-le0.cia.com.au> */ 23 /* Adapted for XEmacs by David Hobley <david@spook-le0.cia.com.au> */
24 /* Synced with FSF Emacs 19.34.6 by Marc Paquette <marcpa@cam.org> */ 24 /* Synced with FSF Emacs 19.34.6 by Marc Paquette <marcpa@cam.org> */
25 25
26 #include "config.h" 26 #include <config.h>
27 #include "lisp.h" /* for VALMASK */
27 28
28 #include <stdlib.h> 29 #include <stdlib.h>
29 #include <stdio.h>
30 30
31 #include "ntheap.h" 31 #include "ntheap.h"
32 #include "lisp.h" /* for VALMASK */
33 32
34 /* This gives us the page size and the size of the allocation unit on NT. */ 33 /* This gives us the page size and the size of the allocation unit on NT. */
35 SYSTEM_INFO sysinfo_cache; 34 SYSTEM_INFO sysinfo_cache;
36 unsigned long syspage_mask = 0; 35 unsigned long syspage_mask = 0;
37 36