ARGUSED*/
| 468 | |
| 469 | /*ARGUSED*/ |
| 470 | const char * |
| 471 | copyright_banner_line(int indx) |
| 472 | { |
| 473 | #ifdef COPYRIGHT_BANNER_A |
| 474 | if (indx == 1) |
| 475 | return COPYRIGHT_BANNER_A; |
| 476 | #endif |
| 477 | #ifdef COPYRIGHT_BANNER_B |
| 478 | if (indx == 2) |
| 479 | return COPYRIGHT_BANNER_B; |
| 480 | #endif |
| 481 | |
| 482 | if (indx == 3) |
| 483 | return nomakedefs.copyright_banner_c; |
| 484 | |
| 485 | #ifdef COPYRIGHT_BANNER_D |
| 486 | if (indx == 4) |
| 487 | return COPYRIGHT_BANNER_D; |
| 488 | #endif |
| 489 | return ""; |
| 490 | } |
| 491 | |
| 492 | /* called by argcheck(allmain.c) from early_options(sys/xxx/xxxmain.c) */ |
| 493 | void |
no outgoing calls
no test coverage detected