Files
heimdal/include/krb5-types.cross
Love Hornquist Astrand 26f7b41f25 define krb5_socket_t
2009-11-25 02:08:13 +01:00

19 lines
344 B
Plaintext

/*
* 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;
typedef int krb5_socket_t;
#endif /* __krb5_types_h__ */