summaryrefslogtreecommitdiff
path: root/src/w32heap.c
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1996-11-19 04:59:23 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1996-11-19 04:59:23 +0000
commitfbd6baedb5818026258ae813d298779d4d029bf1 (patch)
treeb48b862a1f549f0a5d903fb6aad622e4ae80bfe9 /src/w32heap.c
parent0f7d64d24552f764c1a34a2d6087dee2eb92770e (diff)
downloademacs-fbd6baedb5818026258ae813d298779d4d029bf1.tar.gz
Change identifiers of the form win32* to w32*.
Diffstat (limited to 'src/w32heap.c')
-rw-r--r--src/w32heap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/w32heap.c b/src/w32heap.c
index 6847b9345c7..240185501b9 100644
--- a/src/w32heap.c
+++ b/src/w32heap.c
@@ -38,8 +38,8 @@ int edata;
int etext;
/* The major and minor versions of NT. */
-int nt_major_version;
-int nt_minor_version;
+int w32_major_version;
+int w32_minor_version;
/* Cache information describing the NT system for later use. */
void
@@ -58,8 +58,8 @@ cache_system_info (void)
/* Cache the version of the operating system. */
version.data = GetVersion ();
- nt_major_version = version.info.major;
- nt_minor_version = version.info.minor;
+ w32_major_version = version.info.major;
+ w32_minor_version = version.info.minor;
/* Cache page size, allocation unit, processor type, etc. */
GetSystemInfo (&sysinfo_cache);