~ubuntu-branches/ubuntu/saucy/s390-tools/saucy

« back to all changes in this revision

Viewing changes to dasdfmt/dasdfmt.h

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2008-07-15 23:55:41 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080715235541-r79vu6eqh4qim413
Tags: 1.6.2-1
* New upstream version.
* Install udev rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * File...........: s390-tools/dasdfmt/dasdfmt.h
3
3
 * Author(s)......: Horst Hummel <Horst.Hummel@de.ibm.com>
4
4
 *                  Volker Sameske <sameske@de.ibm.com>
5
 
 * Bugreports.to..: <Linux390@de.ibm.com>
6
 
 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 2002
 
5
 * Copyright IBM Corp. 2002,2007
7
6
 */
8
7
 
9
8
#ifndef DASDFMT_H
148
147
        if (*endptr) ERRMSG_EXIT(EXIT_MISUSE,"%s: " str " "    \
149
148
        "is in invalid format\n",prog_name);}
150
149
 
151
 
#define dasdfmt_getopt_string "b:n:l:f:d:m:hpLty?vVFk"
 
150
#define dasdfmt_getopt_string "b:n:l:f:d:m:hpLtyvVFk"
152
151
 
153
152
static struct option dasdfmt_getopt_long_options[]=
154
153
{
163
162
        { "devno",       1, 0, 'n'},
164
163
        { "device",      1, 0, 'f'},
165
164
        { "blocksize",   1, 0, 'b'},
166
 
        { "help",        0, 0, '?'},
 
165
        { "help",        0, 0, 'h'},
167
166
        { "keep_volser", 0, 0, 'k'},
168
167
        {0, 0, 0, 0}
169
168
};