abort.html 487 B

1234567891011121314151617181920212223242526272829
  1. <html>
  2. <head>
  3. <title>abort</title>
  4. <body bgcolor=#ffffff>
  5. <h2 align=center>abort</h2>
  6. <h4 align=center>OS/161 Reference Manual</h4>
  7. <h3>Name</h3>
  8. abort - abnormal program termination
  9. <h3>Library</h3>
  10. Standard C Library (libc, -lc)
  11. <h3>Synopsis</h3>
  12. #include &lt;abort.h&gt;<br>
  13. <br>
  14. void<br>
  15. abort(void);
  16. <h3>Description</h3>
  17. The abort function causes immediate abnormal program termination.
  18. Cleanup is not performed.
  19. <h3>Return Values</h3>
  20. abort does not return.
  21. </body>
  22. </html>