home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / text / c_manual / amiga / hintsandtips / example3.c < prev    next >
Text File  |  1995-02-27  |  1KB  |  31 lines

  1. /***********************************************************/
  2. /*                                                         */
  3. /* Amiga C Encyclopedia (ACE) V3.0      Amiga C Club (ACC) */
  4. /* -------------------------------      ------------------ */
  5. /*                                                         */
  6. /* Book:    ACM Amiga                   Amiga C Club       */
  7. /* Chapter: Hints And Tips              Tulevagen 22       */
  8. /* File:    Example3.c                  181 41  LIDINGO    */
  9. /* Author:  Anders Bjerin               SWEDEN             */
  10. /* Date:    92-05-07                                       */
  11. /* Version: 1.10                                           */
  12. /*                                                         */
  13. /*   Copyright 1992, Anders Bjerin - Amiga C Club (ACC)    */
  14. /*                                                         */
  15. /* Registered members may use this program freely in their */
  16. /*     own commercial/noncommercial programs/articles.     */
  17. /*                                                         */
  18. /***********************************************************/
  19.  
  20. /* This program will not open any console window if run from */
  21. /* workbench. The disadvantage is of course that you can not */
  22. /* use any "console functions" such as printf().             */
  23.  
  24. void _main();
  25.  
  26. void _main() /* Note the special character in front of main()! */
  27. {
  28.   /* Wait for a while: */
  29.   Delay( 5 * 50 );
  30. }
  31.