mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-11 11:50:06 +00:00
Fix typo in macro name
It is _POSIX_SIGNALS and not _POSUX_SIGNALS
This commit is contained in:
parent
b100f9aa77
commit
256aa66596
@ -1,3 +1,7 @@
|
|||||||
|
2014-07-02 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name.
|
||||||
|
|
||||||
2014-07-02 Will Newton <will.newton@linaro.org>
|
2014-07-02 Will Newton <will.newton@linaro.org>
|
||||||
|
|
||||||
* malloc/obstack.c: Merge from gnulib master.
|
* malloc/obstack.c: Merge from gnulib master.
|
||||||
|
@ -998,7 +998,7 @@ __sysconf (name)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
case _SC_SIGNALS:
|
case _SC_SIGNALS:
|
||||||
#ifdef _POSUX_SIGNALS
|
#ifdef _POSIX_SIGNALS
|
||||||
return _POSIX_SIGNALS;
|
return _POSIX_SIGNALS;
|
||||||
#else
|
#else
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user