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 | fbd6baedb5818026258ae813d298779d4d029bf1 (patch) | |
tree | b48b862a1f549f0a5d903fb6aad622e4ae80bfe9 /src/w32heap.c | |
parent | 0f7d64d24552f764c1a34a2d6087dee2eb92770e (diff) | |
download | emacs-fbd6baedb5818026258ae813d298779d4d029bf1.tar.gz |
Change identifiers of the form win32* to w32*.
Diffstat (limited to 'src/w32heap.c')
-rw-r--r-- | src/w32heap.c | 8 |
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); |