Rev 1590 | Rev 1688 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1590 | Rev 1653 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | * SUCH DAMAGE. |
33 | * SUCH DAMAGE. |
| 34 | * |
34 | * |
| 35 | * @(#)tetris.c 8.1 (Berkeley) 5/31/93 |
35 | * @(#)tetris.c 8.1 (Berkeley) 5/31/93 |
| 36 | */ |
36 | */ |
| 37 | 37 | ||
| - | 38 | /** @addtogroup tetris Tetris |
|
| - | 39 | * @brief Tetris ported from OpenBSD |
|
| - | 40 | * @{ |
|
| - | 41 | */ |
|
| - | 42 | /** @file |
|
| - | 43 | */ |
|
| - | 44 | ||
| 38 | #ifndef lint |
45 | #ifndef lint |
| 39 | static const char copyright[] = |
46 | static const char copyright[] = |
| 40 | "@(#) Copyright (c) 1992, 1993\n\ |
47 | "@(#) Copyright (c) 1992, 1993\n\ |
| 41 | The Regents of the University of California. All rights reserved.\n"; |
48 | The Regents of the University of California. All rights reserved.\n"; |
| 42 | #endif /* not lint */ |
49 | #endif /* not lint */ |
| Line 457... | Line 464... | ||
| 457 | usage(void) |
464 | usage(void) |
| 458 | { |
465 | { |
| 459 | (void)fprintf(stderr, "usage: tetris [-ps] [-k keys] [-l level]\n"); |
466 | (void)fprintf(stderr, "usage: tetris [-ps] [-k keys] [-l level]\n"); |
| 460 | exit(1); |
467 | exit(1); |
| 461 | } |
468 | } |
| - | 469 | ||
| - | 470 | /** @} |
|
| - | 471 | */ |
|
| - | 472 | ||