?? fix.h
字號:
/*$Id: fix.h,v 1.3.2.2 2002/04/27 15:39:01 erik Exp $*//* This fixes various things in system files that are incomplete, for instance many systems don't properly prototype all system functions. It is not intended to DUPLICATE anything in the system include files; if the compiler reports a conflict between a prototye in a system file and this file then the prototype in this file should be removed. This is included by files in src/sys/src*/#if !defined(ESMC_FIX_H)#define ESMC_FIX_H/* This prototype lets us resolve the datastructure 'rusage' only in the source files using getrusage, and not in other source files.*/typedef struct rusage* s_rusage;/* -----------------------DEC alpha ----------------------------------------*/#if defined(__cplusplus)extern "C" {extern int getdomainname(char *,int);extern unsigned int sleep (unsigned int);}#else#endif#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -