diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-09-28 12:32:24 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-09-28 12:32:24 +0200 |
commit | c86ea762ab8845450ed8e142a11848b5f42f5863 (patch) | |
tree | e16f703980536c34b2a02974b422f5bb5c1404c5 /dmiopt.h | |
parent | 06f6f3f787798e36d097a07873bd2e6e6b44c257 (diff) | |
parent | 53bafb796b654d1f7206196fd97cf8ba0b08ad7a (diff) |
Merge to new upstream release 3.0
Diffstat (limited to 'dmiopt.h')
-rw-r--r-- | dmiopt.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,7 +2,7 @@ * Command line handling of dmidecode * This file is part of the dmidecode project. * - * Copyright (C) 2005-2008 Jean Delvare <khali@linux-fr.org> + * Copyright (C) 2005-2008 Jean Delvare <jdelvare@suse.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,6 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "types.h" + struct string_keyword { const char *keyword; @@ -42,6 +44,7 @@ extern struct opt opt; #define FLAG_QUIET (1 << 3) #define FLAG_DUMP_BIN (1 << 4) #define FLAG_FROM_DUMP (1 << 5) +#define FLAG_NO_SYSFS (1 << 6) int parse_command_line(int argc, char * const argv[]); void print_help(void); |