diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1996-11-19 04:59:23 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1996-11-19 04:59:23 +0000 |
commit | 08983720e7254809fd09d288052e3250e1456079 (patch) | |
tree | 8c4902f497c2df2a858667bfa392f5bf86664a69 /src/w32heap.h | |
parent | 5187e8acf84394b2b0f24f0fbc26c719d2279434 (diff) | |
download | emacs-08983720e7254809fd09d288052e3250e1456079.tar.gz |
Change identifiers of the form win32* to w32*.
Diffstat (limited to 'src/w32heap.h')
-rw-r--r-- | src/w32heap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/w32heap.h b/src/w32heap.h index b3c01d3a976..24ed080ff7f 100644 --- a/src/w32heap.h +++ b/src/w32heap.h @@ -36,8 +36,8 @@ Boston, MA 02111-1307, USA. #define get_page_size() sysinfo_cache.dwPageSize #define get_allocation_unit() sysinfo_cache.dwAllocationGranularity #define get_processor_type() sysinfo_cache.dwProcessorType -#define get_nt_major_version() nt_major_version -#define get_nt_minor_version() nt_minor_version +#define get_w32_major_version() w32_major_version +#define get_w32_minor_version() w32_minor_version extern unsigned char *get_data_start(); extern unsigned char *get_data_end(); @@ -45,8 +45,8 @@ extern unsigned long data_region_size; extern unsigned long reserved_heap_size; extern SYSTEM_INFO sysinfo_cache; extern BOOL need_to_recreate_heap; -extern int nt_major_version; -extern int nt_minor_version; +extern int w32_major_version; +extern int w32_minor_version; /* Emulation of Unix sbrk(). */ extern void *sbrk (unsigned long size); |