diff options
author | Carlos O'Donell <carlos@redhat.com> | 2023-05-11 14:35:55 -0400 |
---|---|---|
committer | Carlos O'Donell <carlos@redhat.com> | 2023-05-16 07:19:31 -0400 |
commit | 91f33a300c6a5af81943c7f67d9b58a68b82d116 (patch) | |
tree | dffd2c34d502dba5f67f8cc82c746651dff12c4a /stdlib | |
parent | c3004417afc98585089a9282d1d4d60cdef5317a (diff) | |
download | glibc-91f33a300c6a5af81943c7f67d9b58a68b82d116.tar.gz glibc-91f33a300c6a5af81943c7f67d9b58a68b82d116.tar.xz glibc-91f33a300c6a5af81943c7f67d9b58a68b82d116.zip |
stdlib: Reformat Makefile.
Reflow Makefile. Sort using scripts/sort-makefile-lines.py. No code generation changes observed in binary artifacts. No regressions on x86_64 and i686.
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/Makefile b/stdlib/Makefile index 5e38f0e6a2..59ffed79b9 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -31,8 +31,8 @@ headers := \ bits/stdint-uintn.h \ bits/stdlib-bsearch.h \ bits/stdlib-float.h \ - bits/stdlib.h \ bits/stdlib-ldbl.h \ + bits/stdlib.h \ bits/time64.h \ bits/timesize.h \ bits/types/error_t.h \ @@ -59,7 +59,7 @@ routines := \ atof \ atoi \ atol\ - atoll \ + atoll \ bsearch \ canonicalize \ cxa_at_quick_exit \ @@ -155,8 +155,8 @@ aux = \ # Instead the static object files will be included in a special archive # linked against when the shared library will be used. static-only-routines = \ - atexit \ at_quick_exit \ + atexit \ # static-only-routines test-srcs := \ |