~ubuntu-branches/ubuntu/saucy/bc/saucy-proposed

« back to all changes in this revision

Viewing changes to bc/main.c

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2002-04-13 11:33:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020413113349-13xjv23rme03ctut
Tags: 1.06-8
* debian/control: Priority changed to standard as per overrides file
* debian/control: Standards-Version upgraded to 3.5.0
* debian/copyright: Debian/GNU Linux typo fix (lintian)

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
  printf ("usage: %s [options] [file ...]\n%s%s%s%s%s%s%s", progname,
64
64
          "  -h  --help         print this usage and exit\n",
65
65
          "  -i  --interactive  force interactive mode\n",
66
 
          "  -l  --mathlib      use the predefine math routnes\n",
 
66
          "  -l  --mathlib      use the predefined math routines\n",
67
67
          "  -q  --quiet        don't print initial banner\n",
68
68
          "  -s  --standard     non-standard bc constructs are errors\n",
69
69
          "  -w  --warn         warn about non-standard bc constructs\n",
93
93
 
94
94
      switch (optch)
95
95
        {
 
96
        case 0: /* Long option setting a var. */
 
97
          break;
 
98
 
96
99
        case 'c':  /* compile only */
97
100
          compile_only = TRUE;
98
101
          break;