prototype for sscanf. Also add #define for strncasecmp() to the
microsoft's strnicmp() function.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6814
dc483132-0cff-0310-8789-
dd5450dbe970
+Fri Sep 22 19:42:47 1995 Theodore Y. Ts'o <tytso@dcl>
+
+ * k5-int.h: (from Keith Vetter's windows changes); define
+ THREEPARAMOPEN and prototype for sscanf. Also add #define
+ for strncasecmp() to the microsoft's strnicmp() function.
+
Tue Sep 12 12:00:00 1995 John Rivlin <jrivlin@fusion.com>
* k5-int.h: Removed KRB5_REALM_CANT RESOLVE,
#include <fcntl.h>
#include <io.h>
#include <process.h>
+#define THREEPARAMOPEN(x,y,z) open(x,y,z)
#define O_RDONLY _O_RDONLY
#define O_WRONLY _O_WRONLY
#define O_RDWR _O_RDWR
/* Functions with slightly different names on the PC
*/
#define strcasecmp _stricmp
+#define strncasecmp _strnicmp
#define strdup _strdup
#define off_t _off_t
+int sscanf(const char *str, char const *fmt0, ...);
#else /* Rest of include file is for non-Microloss-Windows */