forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2002-04-02 Jakub Jelinek <[email protected]> * inet/ether_ntoh.c (__nss_ethers_lookup): Add internal_function. * inet/ether_hton.c (__nss_ethers_lookup): Likewise. * inet/getnetgrent_r.c (__nss_netgroup_lookup): Likewise. * sunrpc/netname.c (__nss_publickey_lookup): Likewise. * sunrpc/publickey.c (__nss_publickey_lookup): Likewise. 2002-03-30 Jakub Jelinek <[email protected]> * elf/dynamic-link.h (elf_get_dynamic_info): Don't abort on unknown dynamic tags. 2002-03-29 Jakub Jelinek <[email protected]> * sysdeps/i386/fpu/s_fabs.S: New file. * sysdeps/i386/fpu/s_fabsf.S: New file. * sysdeps/i386/fpu/s_fabsl.S: New file. * sysdeps/sparc/sparc64/fpu/s_fabs.c: New file. * sysdeps/sparc/sparc64/fpu/s_fabsf.c: New file. * sysdeps/sparc/sparc64/fpu/s_fabsl.c: New file. 2002-04-02 Ulrich Drepper <[email protected]> * rt/tst-shm.c (do_test): Add one more test for size of shared memory object. 2002-03-29 Wolfram Gloger <[email protected]> * malloc/malloc.c: Add short description and prototypes for malloc_get_state, malloc_set_state and posix_memalign, for consistency and to avoid warnings with -Wstrict-prototypes. Reported by Andreas Jaeger <[email protected]>. 2002-04-02 Ulrich Drepper <[email protected]> * po/gl.po: Update from translation team.
- Loading branch information
Ulrich Drepper
committed
Apr 3, 2002
1 parent
6209769
commit f7ddf3d
Showing
16 changed files
with
444 additions
and
453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,41 @@ | ||
2002-04-02 Jakub Jelinek <[email protected]> | ||
|
||
* inet/ether_ntoh.c (__nss_ethers_lookup): Add internal_function. | ||
* inet/ether_hton.c (__nss_ethers_lookup): Likewise. | ||
* inet/getnetgrent_r.c (__nss_netgroup_lookup): Likewise. | ||
* sunrpc/netname.c (__nss_publickey_lookup): Likewise. | ||
* sunrpc/publickey.c (__nss_publickey_lookup): Likewise. | ||
|
||
2002-03-30 Jakub Jelinek <[email protected]> | ||
|
||
* elf/dynamic-link.h (elf_get_dynamic_info): Don't abort on unknown | ||
dynamic tags. | ||
|
||
2002-03-29 Jakub Jelinek <[email protected]> | ||
|
||
* sysdeps/i386/fpu/s_fabs.S: New file. | ||
* sysdeps/i386/fpu/s_fabsf.S: New file. | ||
* sysdeps/i386/fpu/s_fabsl.S: New file. | ||
* sysdeps/sparc/sparc64/fpu/s_fabs.c: New file. | ||
* sysdeps/sparc/sparc64/fpu/s_fabsf.c: New file. | ||
* sysdeps/sparc/sparc64/fpu/s_fabsl.c: New file. | ||
|
||
2002-04-02 Ulrich Drepper <[email protected]> | ||
|
||
* rt/tst-shm.c (do_test): Add one more test for size of shared | ||
memory object. | ||
|
||
2002-03-29 Wolfram Gloger <[email protected]> | ||
|
||
* malloc/malloc.c: Add short description and prototypes for | ||
malloc_get_state, malloc_set_state and posix_memalign, for | ||
consistency and to avoid warnings with -Wstrict-prototypes. | ||
Reported by Andreas Jaeger <[email protected]>. | ||
|
||
2002-04-02 Ulrich Drepper <[email protected]> | ||
|
||
* po/gl.po: Update from translation team. | ||
|
||
2002-03-31 Roland McGrath <[email protected]> | ||
|
||
* hurd/hurdselect.c (_hurd_select): Fix | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* Copyright (C) 1996, 1999 Free Software Foundation, Inc. | ||
/* Copyright (C) 1996, 1999, 2002 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
Contributed by Ulrich Drepper <[email protected]>, 1996. | ||
|
@@ -30,7 +30,7 @@ typedef int (*lookup_function) (const char *, struct etherent *, char *, int, | |
|
||
/* The lookup function for the first entry of this service. */ | ||
extern int __nss_ethers_lookup (service_user **nip, const char *name, | ||
void **fctp); | ||
void **fctp) internal_function; | ||
|
||
|
||
int | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* Copyright (C) 1996, 1997, 1999, 2001 Free Software Foundation, Inc. | ||
/* Copyright (C) 1996, 1997, 1999, 2001, 2002 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
Contributed by Ulrich Drepper <[email protected]>, 1996. | ||
|
@@ -31,7 +31,7 @@ typedef int (*lookup_function) (const struct ether_addr *, struct etherent *, | |
|
||
/* The lookup function for the first entry of this service. */ | ||
extern int __nss_ethers_lookup (service_user **nip, const char *name, | ||
void **fctp); | ||
void **fctp) internal_function; | ||
|
||
|
||
int | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.