tmpfile.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* tmpfile.c - creat a temporary file. stdio.h */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3. /* 
  4. modification history 
  5. -------------------- 
  6. 01d,05mar93,jdi  documentation cleanup for 5.1.
  7. 01c,21sep92,smb  tweaks for mg.
  8. 01b,20sep92,smb  documentation additions
  9. 01a,29jul92,smb  written.
  10. */ 
  11. /* 
  12. DESCRIPTION 
  13.  
  14. INCLUDE FILE: stdio.h, string.h 
  15.  
  16. SEE ALSO: American National Standard X3.159-1989 
  17. NOMANUAL
  18. */ 
  19. #include "vxWorks.h"
  20. #include "stdio.h"
  21. /*******************************************************************************
  22. *
  23. * tmpfile - create a temporary binary file (Unimplemented) (ANSI)
  24. *
  25. * This routine is not be implemented
  26. * because VxWorks does not close all open files at task exit.
  27. * INCLUDE FILES: stdio.h 
  28. *
  29. * RETURNS: NULL 
  30. */
  31. FILE * tmpfile (void)
  32.     {
  33.     return (NULL);
  34.     }