diff options
author | Roland McGrath <roland@hack.frob.com> | 2015-01-23 10:41:37 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2015-01-23 10:41:37 -0800 |
commit | da5bf2459ced2f08b89cb462e20eecd7882a38ea (patch) | |
tree | 579b634cac5a305c8cf69ffb83df86ab4fa986e9 | |
parent | d7423856b5949401e08136d8db8ece1d9dc229f9 (diff) | |
download | glibc-da5bf2459ced2f08b89cb462e20eecd7882a38ea.tar.gz glibc-da5bf2459ced2f08b89cb462e20eecd7882a38ea.tar.xz glibc-da5bf2459ced2f08b89cb462e20eecd7882a38ea.zip |
Add missing libc_hidden_def to stub getrlimit64.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | resource/getrlimit64.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index ae428c0649..e708002202 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-01-23 Roland McGrath <roland@hack.frob.com> + + * resource/getrlimit64.c: Add missing libc_hidden_def. + 2015-01-22 Joseph Myers <joseph@codesourcery.com> * soft-fp/op-common.h (_FP_ADD_INTERNAL): Declare labels with diff --git a/resource/getrlimit64.c b/resource/getrlimit64.c index eaafe1b8c7..6d22eca2b3 100644 --- a/resource/getrlimit64.c +++ b/resource/getrlimit64.c @@ -40,3 +40,4 @@ getrlimit64 (enum __rlimit_resource resource, struct rlimit64 *rlimits) return 0; } +libc_hidden_def (getrlimit64) |