1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 04:40:29 +02:00

Update Gnulib to v0.1-1157-gb03f418.

This commit is contained in:
Andy Wingo 2017-03-01 09:20:27 +01:00
parent d475b7a946
commit fcf8716d60
397 changed files with 1995 additions and 1095 deletions

View file

@ -1,6 +1,6 @@
/* Provide a sys/socket header file for systems lacking it (read: MinGW)
and for systems where it is incomplete.
Copyright (C) 2005-2016 Free Software Foundation, Inc.
Copyright (C) 2005-2017 Free Software Foundation, Inc.
Written by Simon Josefsson.
This program is free software; you can redistribute it and/or modify
@ -79,7 +79,12 @@ _GL_INLINE_HEADER_BEGIN
#if !@HAVE_SA_FAMILY_T@
# if !GNULIB_defined_sa_family_t
/* On OS/2 kLIBC, sa_family_t is unsigned char unless TCPV40HDRS is defined. */
# if !defined __KLIBC__ || defined TCPV40HDRS
typedef unsigned short sa_family_t;
# else
typedef unsigned char sa_family_t;
# endif
# define GNULIB_defined_sa_family_t 1
# endif
#endif