1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
* string/string-inlines.c: Undefined __USE_STRING_INLINES before
	defining it.
This commit is contained in:
Ulrich Drepper
1999-08-06 22:27:07 +00:00
parent 5ab1c03381
commit 544e1130df
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,8 @@
1999-08-06 Ulrich Drepper <drepper@cygnus.com> 1999-08-06 Ulrich Drepper <drepper@cygnus.com>
* string/string-inlines.c: Undefined __USE_STRING_INLINES before
defining it.
* inet/Makefile (tests): Add tst-ipnode. * inet/Makefile (tests): Add tst-ipnode.
* inet/tst-ipnode.c: New file. * inet/tst-ipnode.c: New file.

View File

@ -1,5 +1,6 @@
#include <netdb.h> #include <netdb.h>
#include <stdio.h> #include <stdio.h>
#include <netinet/in.h>
/* The unspecified IPv6 address. */ /* The unspecified IPv6 address. */
struct in6_addr anyv6 = IN6ADDR_ANY_INIT; struct in6_addr anyv6 = IN6ADDR_ANY_INIT;
@ -12,7 +13,8 @@ main (void)
/* Test the unspecifed IPv6 address. */ /* Test the unspecifed IPv6 address. */
errval = 0x3453456; errval = 0x3453456;
if (getipnodebyaddr (&anyv6, sizeof (anyv6), AF_INET6, &errval) != NULL if (getipnodebyaddr ((char *) &anyv6, sizeof (anyv6), AF_INET6, &errval)
!= NULL
|| errval != HOST_NOT_FOUND) || errval != HOST_NOT_FOUND)
{ {
puts ("getipnodenyaddr(in6addr_any,...) != NULL"); puts ("getipnodenyaddr(in6addr_any,...) != NULL");

View File

@ -20,9 +20,9 @@
functions. These functions are declared additionally here if functions. These functions are declared additionally here if
inlining is not possible. */ inlining is not possible. */
#undef __USE_STRING_INLINES
#define __USE_STRING_INLINES #define __USE_STRING_INLINES
#define _FORCE_INLINES #define _FORCE_INLINES
#define __STRING_INLINE /* empty */ #define __STRING_INLINE /* empty */
#include <string.h> #include <string.h>