mirror of
https://sourceware.org/git/glibc.git
synced 2026-01-06 11:51:29 +03:00
Revert "linux: Move xmknod{at} to compat symbols"
This reverts commit 81b83ff61f to move
__xmknod{at} back to default symbols. ABIs with default symbol version
of 2.33 or newer (such as riscv32) continue to just provide the mknod*
symbols.
The idea is to not force static libraries built against old glibc
to update against new glibcs (since they reference the the
xmknod{at} symbols).
Checked on x86_64-linux-gnu and i686-linux-gnu.
This commit is contained in:
@@ -27,7 +27,6 @@
|
||||
and device number DEV (which can be constructed from major and minor
|
||||
device numbers with the `makedev' macro above). */
|
||||
int
|
||||
attribute_compat_text_section
|
||||
__xmknod (int vers, const char *path, mode_t mode, dev_t *dev)
|
||||
{
|
||||
if (vers != _MKNOD_VER)
|
||||
@@ -35,6 +34,4 @@ __xmknod (int vers, const char *path, mode_t mode, dev_t *dev)
|
||||
|
||||
return __mknodat (AT_FDCWD, path, mode, *dev);
|
||||
}
|
||||
|
||||
compat_symbol (libc, __xmknod, __xmknod, GLIBC_2_0);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user