stfd.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.stfd.c 1.6 05/17/01 18:14:23 cort
  3.  */
  4. #include <linux/types.h>
  5. #include <linux/errno.h>
  6. #include <asm/uaccess.h>
  7.  
  8. int
  9. stfd(void *frS, void *ea)
  10. {
  11. #if 0
  12. #ifdef DEBUG
  13. printk("%s: S %p, ea %p: ", __FUNCTION__, frS, ea);
  14. dump_double(frS);
  15. printk("n");
  16. #endif
  17. #endif
  18. if (copy_to_user(ea, frS, sizeof(double)))
  19. return -EFAULT;
  20. return 0;
  21. }