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

📄 systemlib.c

📁 C++ SOCKET 类
💻 C
字号:
#include "systemlib.h"#include <config.h>#ifdef LIBC_SIGACTION#define _THREAD_SIGACTION_PROGRAM_ __libc_sigaction#else#define _THREAD_SIGACTION_PROGRAM_ __sigaction#endifextern "C" {int _THREAD_SIGACTION_PROGRAM_(int,const struct sigaction*,struct sigaction*);void _exit(int);};namespace sys {  int sigaction(int a,const struct sigaction *b,struct sigaction *c)    { return _THREAD_SIGACTION_PROGRAM_(a,b,c); };  void exit(int a)    { _exit(a); };};

⌨️ 快捷键说明

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