diff options
| author | Stefan Liebler <stli@linux.vnet.ibm.com> | 2017-09-25 15:56:22 +0200 |
|---|---|---|
| committer | Stefan Liebler <stli@linux.vnet.ibm.com> | 2017-09-25 15:56:22 +0200 |
| commit | 9947638d74f490b8ec9a1563c195881a4151bd80 (patch) | |
| tree | 81fdc0e7ebb2e43a1dee93cc0ed20510ed343b64 | |
| parent | f5f0f5265162fe6f4f238abcd3086985f7c38d6d (diff) | |
| download | glibc-9947638d74f490b8ec9a1563c195881a4151bd80.tar.xz glibc-9947638d74f490b8ec9a1563c195881a4151bd80.zip | |
Fix typo in sincos32.h inclusion guard.
This patch fixes a typo in inclusion guard in sincos32.h.
ChangeLog:
* sysdeps/ieee754/dbl-64/sincos32.h
[SINCCOS32_H]: Remove define.
[SINCOS32_H]: Define.
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | sysdeps/ieee754/dbl-64/sincos32.h | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2017-09-25 Stefan Liebler <stli@linux.vnet.ibm.com> + + * sysdeps/ieee754/dbl-64/sincos32.h + [SINCCOS32_H]: Remove define. + [SINCOS32_H]: Define. + 2017-09-25 Szabolcs Nagy <szabolcs.nagy@arm.com> * math/Versions (expf): New libm symbol at GLIBC_2.27. diff --git a/sysdeps/ieee754/dbl-64/sincos32.h b/sysdeps/ieee754/dbl-64/sincos32.h index 8265a23e77..2261b8fbba 100644 --- a/sysdeps/ieee754/dbl-64/sincos32.h +++ b/sysdeps/ieee754/dbl-64/sincos32.h @@ -25,7 +25,7 @@ /******************************************************************/ #ifndef SINCOS32_H -#define SINCCOS32_H +#define SINCOS32_H #ifdef BIG_ENDI static const number |
