fltpr.c
来自「minux的源代码,一个非常小的操作系统」· C语言 代码 · 共 13 行
C
13 行
#include <stdio.h>
#include <stdlib.h>
#include "../stdio/loc_incl.h"
int _fp_hook = 1;
char *
_f_print(va_list *ap, int flags, char *s, char c, int precision)
{
fprintf(stderr,"cannot print floating point\n");
exit(EXIT_FAILURE);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?