(from Keith Vetter's windows changes); define THREEPARAMOPEN and
authorTheodore Tso <tytso@mit.edu>
Fri, 22 Sep 1995 23:44:14 +0000 (23:44 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 22 Sep 1995 23:44:14 +0000 (23:44 +0000)
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

src/include/ChangeLog
src/include/k5-int.h

index c4ab0a6fe4ce840428ec28d69f173acfe288532c..78e05ca24d2fe3e8c62c72834c7d54312b53ed07 100644 (file)
@@ -1,3 +1,9 @@
+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,
index 981df098761e2674dd3b522f15a4dcdf4e741ced..1b2b35627d4995a5d911cc88eee6e587e5064d27 100644 (file)
@@ -137,6 +137,7 @@ typedef unsigned char       u_char;
 #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
@@ -173,8 +174,10 @@ typedef unsigned char      u_char;
 /* 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 */