wrterr.f
上传用户:szhypcb168
上传日期:2007-01-06
资源大小:2187k
文件大小:1k
源码类别:

语音压缩

开发平台:

Unix_Linux

  1. c==========================================================================
  2. c
  3. c ROUTINE
  4. c               write_error
  5. c
  6. c FUNCTION
  7. c                
  8. c               prints sungraph write error message
  9. c
  10. c SYNOPSIS
  11. c               subroutine write_error(status,string)
  12. c
  13. c   formal 
  14. c
  15. c                       data    I/O
  16. c       name            type    type    function
  17. c       -------------------------------------------------------------------
  18. c       status i i sungraph error index
  19. c string chr i name of file in error
  20. c
  21. c==========================================================================
  22. c
  23. c DESCRIPTION
  24. c
  25. c
  26. c**************************************************************************
  27. c
  28. subroutine write_error(status,string)
  29. implicit undefined(a-z)
  30. integer status
  31. character*(*) string
  32. c
  33. print *,' write_error:  disk write error at ', string
  34. call print_disk_write_error(status)
  35. stop
  36. end