gssftp/ftp/cmds.c had a preprocessor conditional on HAVE_STDLIB_H that
will not evaluate correctly on WIN32 unless win-mac.h is included first.
ticket: 6531
target_version: 1.6.4
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22443
dc483132-0cff-0310-8789-
dd5450dbe970
/*
* FTP User Program -- Command Routines.
*/
+#ifdef _WIN32
+#include <win-mac.h>
+#endif
+
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif