diff options
author | Paul A. Patience <paul@apatience.com> | 2021-09-04 20:23:38 -0400 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-09-06 10:20:53 -0700 |
commit | 7a61f63b30eb60ca7ee791c6a85ca0ac241a76b6 (patch) | |
tree | 6916fbb042c39735cbccc349a4cc7615a302919a /ffi.c | |
parent | 567568e0bfc38980b622f942ee07b23df189ca44 (diff) | |
download | txr-7a61f63b30eb60ca7ee791c6a85ca0ac241a76b6.tar.gz txr-7a61f63b30eb60ca7ee791c6a85ca0ac241a76b6.tar.bz2 txr-7a61f63b30eb60ca7ee791c6a85ca0ac241a76b6.zip |
ffi: add socklen-t type.
* ffi.c: Include <sys/socket.h> if we HAVE_SOCKETS.
(ffi_init_extra_types): Initialize socklen-t type if we
HAVE_SOCKETS.
* txr.1: Documented.
* stdlib/doc-syms.tl: Updated.
Diffstat (limited to 'ffi.c')
-rw-r--r-- | ffi.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -44,6 +44,9 @@ #if HAVE_SYS_TYPES_H #include <sys/types.h> #endif +#if HAVE_SOCKETS +#include <sys/socket.h> +#endif #if HAVE_MMAP #include <sys/mman.h> #include <unistd.h> @@ -4669,6 +4672,12 @@ static void ffi_init_extra_types(void) ffi_typedef(intern(lit("uid-t"), user_package), type_by_size[convert(uid_t, -1) > 0][sizeof (uid_t)]); #endif + +#if HAVE_SOCKETS + ffi_typedef(intern(lit("socklen-t"), user_package), + type_by_size[convert(socklen_t, -1) > 0][sizeof (socklen_t)]); +#endif + ffi_typedef(intern(lit("longlong"), user_package), type_by_size[0][sizeof (long long)]); ffi_typedef(intern(lit("ulonglong"), user_package), |