📄 mprotect.c
字号:
/* * $Id: mprotect.c,v 1.1 2001/09/13 13:23:30 joel Exp $ */#if HAVE_CONFIG_H#include "config.h"#endif#include <unistd.h>/*PAGE * * 12.2.3 Change Memory Protection, P1003.1b-1996, p. 277. * * This is not a functional version but the SPARC backend for at least * gcc 2.8.1 plus gnat 3.13p and gcc 3.0.1 require it to be there and * return 0. */int mprotect(const void *addr, size_t len, int prot){ return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -