patch 8.1.0791: a few compiler warnings on VMS

Problem:    A few compiler warnings on VMS.
Solution:   Remove type cast.  Adjust #ifdef. (Zoltan Arpadffy)
diff --git a/src/proto.h b/src/proto.h
index 0bac087..a71b632 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -256,7 +256,7 @@
 # endif
 
 # if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
-#  if defined(UNIX) || defined(MACOS_X)
+#  if defined(UNIX) || defined(MACOS_X) || defined(VMS)
 #   include "pty.pro"
 #  endif
 # endif