Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2001-02-15  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/generic/strtoll.c: Don't export __strto*_internal as
	default symbol.
	* sysdeps/generic/strtoull.c: Likewise.
  • Loading branch information
Ulrich Drepper committed Feb 15, 2001
1 parent 8a216c1 commit 581cc57
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2001-02-15 Ulrich Drepper <drepper@redhat.com>

* sysdeps/generic/strtoll.c: Don't export __strto*_internal as
default symbol.
* sysdeps/generic/strtoull.c: Likewise.

2001-02-14 Wolfram Gloger <wg@malloc.de>

* malloc/malloc.c (new_heap): When allocating large chunk aligned
Expand Down
10 changes: 8 additions & 2 deletions sysdeps/generic/strtoll.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Function to parse a `long long int' from text.
Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
Copyright (C) 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand All @@ -21,5 +21,11 @@

#include <strtol.c>

strong_alias (__strtoll_internal, __strtoq_internal)
#ifdef _LIBC
# ifdef SHARED
# include <shlib-compat.h>

compat_symbol (libc, __strtoll_internal, __strtoq_internal, GLIBC_2_0);
# endif
weak_alias (strtoll, strtoq)
#endif
8 changes: 6 additions & 2 deletions sysdeps/generic/strtoull.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Function to parse an `unsigned long long int' from text.
Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
Copyright (C) 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand All @@ -22,6 +22,10 @@
#include <strtoul.c>

#ifdef _LIBC
strong_alias (__strtoull_internal, __strtouq_internal)
# ifdef SHARED
# include <shlib-compat.h>

compat_symbol (libc, __strtoull_internal, __strtouq_internal, GLIBC_2_0);
# endif
weak_alias (strtoull, strtouq)
#endif

0 comments on commit 581cc57

Please sign in to comment.