frsp.c
来自「Linux内核源代码 为压缩文件 是<<Linux内核>>」· C语言 代码 · 共 29 行
C
29 行
/* $Id: frsp.c,v 1.1 1999/08/23 18:59:57 cort Exp $ */#include <linux/types.h>#include <linux/errno.h>#include <asm/uaccess.h>#include "soft-fp.h"#include "double.h"#include "single.h"intfrsp(void *frD, void *frB){ FP_DECL_D(B);#ifdef DEBUG printk("%s: D %p, B %p\n", __FUNCTION__, frD, frB);#endif __FP_UNPACK_D(B, frB);#ifdef DEBUG printk("B: %ld %lu %lu %ld (%ld)\n", B_s, B_f1, B_f0, B_e, B_c);#endif return __FP_PACK_DS(frD, B);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?