diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-13 21:11:47 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-13 21:11:47 +0200 |
commit | 52bcdf267b2c97c90852f1598c8c29d0494cb3b5 (patch) | |
tree | 673b953c6b7a742554d0e96a3ac579283632f8d9 /stdlib | |
parent | e1d2ae8d217e50551802f3906099c8adc9f0811e (diff) | |
download | glibc-52bcdf267b2c97c90852f1598c8c29d0494cb3b5.zip glibc-52bcdf267b2c97c90852f1598c8c29d0494cb3b5.tar.gz glibc-52bcdf267b2c97c90852f1598c8c29d0494cb3b5.tar.bz2 |
Remove internal_function attribute from string-to-float functions
These are called across DSO boundaries and should therefore use
the standard calling convention.
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/strtod_nan_main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/stdlib/strtod_nan_main.c b/stdlib/strtod_nan_main.c index 96b788c..9f7dd14 100644 --- a/stdlib/strtod_nan_main.c +++ b/stdlib/strtod_nan_main.c @@ -29,7 +29,6 @@ return a default NAN. If ENDPTR is not NULL, set *ENDPTR to point to the character after the initial n-char-sequence. */ -internal_function FLOAT STRTOD_NAN (const STRING_TYPE *str, STRING_TYPE **endptr, STRING_TYPE endc) { |