You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
205 B

26 years ago
  1. main (argc, argv)
  2. int argc;
  3. char *argv[];
  4. {
  5. # ifdef DEBUG
  6. printf ("argv[0] = %d\n", argv[0]);
  7. # endif
  8. /*
  9. * Rest of program
  10. */
  11. # ifdef DEBUG
  12. printf ("== done ==\n");
  13. # endif
  14. }