kext6.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 30 行

C
30
字号
/* APPLE LOCAL file KEXT indirect-virtual-calls --sts *//* Radar 3848842 Positive C++ test case. *//* Origin F. Jahanian <fjahanian@apple.com> *//* { dg-do compile } *//* { dg-options "-Os  -fapple-kext" } */struct Integer{ Integer ( void ) ; virtual ~Integer ( void ) ;};static void AppendMa(unsigned char *outBuffer);static void AppendNonce();extern "C" void afpfs_DHXLogin (){    unsigned char *cptr = __null;    AppendMa(cptr);     AppendNonce(); }static void AppendNonce() { }static void AppendMa(unsigned char *outBuffer){ Integer Ma;}

⌨️ 快捷键说明

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