home *** CD-ROM | disk | FTP | other *** search
- /*********************************************************************/
- /* Module name: c_break.c */
- /* Date: 27 Dec 87 */
- /* Environment: Turbo C 1.0 */
- /* Author: R. E. Faith */
- /* Notice: Public Domain: The following conditions apply to use: */
- /* 1) No fee shall be charged for distribution. */
- /* 2) Modifications may be made, but authorship information */
- /* for all contributing authors shall be retained. */
- /* 3) This code may not be included as part of a commercial */
- /* package. */
- /* This program is provided AS IS without any warranty, expressed or */
- /* implied, including, but not limited to, fitness for a particular */
- /* purpose. */
- /*********************************************************************/
- static char *__ATH__ =
- "@(#)c_break() v1.0 (27Dec87): Public Domain (P) 1987 R. E. Faith";
-
- #include <stdio.h>
-
- int c_break( void )
- {
- fprintf( stderr, "\n*Break*\n" );
- return 0;
- }
-