⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mmap.c

📁 Glibc 2.3.2源代码(解压后有100多M)
💻 C
字号:
/* This is a system call.  We only have to provide the wrapper.  */#include <sys/mman.h>#include <sys/types.h>void *__mmap (void *addr, size_t len, int prot, int flags, int fd, off_t offset){  return mmap (addr, len, prot, flags, fd, offset);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -