mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
This commit introduces tools/update_glibc.zig to update the start files for next time. Some notable changes in recent glibc: * abi-note.S has been changed to abi-note.c but we resist the change to keep it easier to compile the start files. * elf-init.c has been deleted upstream. Further testing should be done to verify that binaries against glibc omitting elf-init.c still run properly on oldel glibc linux systems. Closes #4926
10 lines
214 B
C
Vendored
10 lines
214 B
C
Vendored
#ifndef _BITS_CPU_SET_H
|
|
#include <posix/bits/cpu-set.h>
|
|
|
|
#ifndef _ISOMAC
|
|
int __sched_cpucount (size_t __setsize, const cpu_set_t *__setp);
|
|
libc_hidden_proto (__sched_cpucount)
|
|
#endif
|
|
|
|
#endif /* _BITS_CPU_SET_H */
|