djrefs.c

来自「UNIX下SH的实现源码」· C语言 代码 · 共 17 行

C
17
字号
#ifdef __DJGPP__

/* Certain library functions deep in libc need to explicitly
   referenced to pull in the modified versions.  */
#include <libc/dosexec.h>
#include <termios.h>

static void dummy_refs (void)
{
  __dosexec_find_in_path (0, 0, 0);
  __libc_termios_init();

}

#endif

⌨️ 快捷键说明

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