0
0
mirror of https://github.com/termux-pacman/glibc-packages.git synced 2025-08-24 07:52:24 +00:00
Files
glibc-packages/gpkg/glibc/fakesyscall-base.h
Max Ivan 0bd3559405 gpkg/glibc: global update (#317)
- updated to 2.41
- added the glibc32 subpackage
- updated fakesyscall handling scheme
- moved all disabled syscalls to fakesyscall list
- added new syscalls to fakesyscall list
- disabled removal of old locales in `locale-gen`
- implemented syslog function, which is configured to work with the android log system
- implemented analog variables `LD_*` to customize glibc environment without affecting bionic environment ('GLIBC_LD_*')
- improved source code for flexible glibc compilation
2025-05-31 17:50:16 +03:00

41 lines
546 B
C

#ifndef _FAKE_SYSCALL_BASE
#define _FAKE_SYSCALL_BASE
#include <arch-syscall.h>
#include <disabled-syscall.h>
// close_range
// fchownat
// ftruncate
// getpgrp
// unlinkat
// symlink
// link
// faccessat
#include <unistd.h>
// accept4
// recvfrom
// sendto
#include <sys/socket.h>
// fchmodat
#include <sys/stat.h>
// clock_gettime
#include <time.h>
// shmat
// shmctl
// shmdt
// shmget
#include <sys/shm.h>
// statx_generic
#include "io/statx_generic.c"
// fake_epoll_pwait2
#include "fake_epoll_pwait2.c"
#endif //_FAKE_SYSCALL_BASE