The header globals.h had an `#ifdef _UWIN` block at the top. This block
had an include with a hard path, which is a bad idea. Since it has
been 12 years since this block has been modified an UWIN isn't used in
the current build, we remove this block.
#ifndef GLOBALS_H
#define GLOBALS_H
-#ifdef _UWIN
-#ifndef _POSIX_ /* ncc doesn't define _POSIX_ */
-/* i.e. if this is the win32 build using nmake with CC=ncc (native C) */
-/* this was the easiest way to get some simple libc interfaces. */
-#include "C:\Program Files\UWIN\usr\include\astwin32.h"
-#undef _UWIN /* don't assume ANY _UWIN features in the execution environment */
-#endif /* _POSIX_ */
-#endif /* _UWIN */
-
#ifdef __cplusplus
extern "C" {
#endif