crypto headers are now stable, provide posix krb5-types.h

This commit is contained in:
Love Hornquist Astrand
2009-09-16 00:24:25 -07:00
parent dc4e8669ea
commit cddc59924c
4 changed files with 80 additions and 120 deletions

16
include/krb5-types.cross Normal file
View File

@@ -0,0 +1,16 @@
/*
* generic krb5-types.h for cross compiling, assume system is posix/sus
*/
#ifndef __krb5_types_h__
#define __krb5_types_h__
#include <inttypes.h>
#include <sys/types.h>
#include <sys/socket.h>
typedef socklen_t krb5_socklen_t;
#include <unistd.h>
typedef ssize_t krb5_ssize_t;
#endif /* __krb5_types_h__ */