home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CRCDOS.ARJ / C_BREAK.C next >
Encoding:
C/C++ Source or Header  |  1987-12-28  |  1.3 KB  |  26 lines

  1. /*********************************************************************/
  2. /* Module name: c_break.c                                            */
  3. /* Date: 27 Dec 87                                                   */
  4. /* Environment: Turbo C 1.0                                          */
  5. /* Author: R. E. Faith                                               */
  6. /* Notice: Public Domain: The following conditions apply to use:     */
  7. /*         1) No fee shall be charged for distribution.              */
  8. /*         2) Modifications may be made, but authorship information  */
  9. /*            for all contributing authors shall be retained.        */
  10. /*         3) This code may not be included as part of a commercial  */
  11. /*            package.                                               */
  12. /* This program is provided AS IS without any warranty, expressed or */
  13. /* implied, including, but not limited to, fitness for a particular  */
  14. /* purpose.                                                          */
  15. /*********************************************************************/
  16. static char    *__ATH__ =
  17. "@(#)c_break() v1.0 (27Dec87): Public Domain (P) 1987 R. E. Faith";
  18.  
  19. #include <stdio.h>
  20.  
  21. int c_break( void )
  22. {
  23.     fprintf( stderr, "\n*Break*\n" );
  24.     return 0;
  25. }
  26.