diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-04-08 23:09:39 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-04-08 23:09:39 +0000 |
commit | 5499792c357777dcfc5ee461fa64baaba1d2dde5 (patch) | |
tree | 15363c44fe541b3adcd720edf39696e9230d7feb /unionfs/options.h | |
parent | e5fca9a10c2622b85cc77e776ea56c8dbb9847e6 (diff) | |
parent | c6db537edac054a03847b1b99f78c00703f48d6b (diff) |
Merge branch 'dde' of git.debian.org:/git/pkg-hurd/hurd into dde
Diffstat (limited to 'unionfs/options.h')
-rw-r--r-- | unionfs/options.h | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/unionfs/options.h b/unionfs/options.h deleted file mode 100644 index eb74ce61..00000000 --- a/unionfs/options.h +++ /dev/null @@ -1,53 +0,0 @@ -/* Hurd unionfs - Copyright (C) 2001, 2002 Free Software Foundation, Inc. - Written by Moritz Schulte <moritz@duesseldorf.ccc.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 the Free Software Foundation; either version 2 of the - License, or * (at your option) any later version. - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - USA. */ - -/* Argument parsing. */ - -/* The possible short options. */ -#define OPT_UNDERLYING 'u' -#define OPT_WRITABLE 'w' -#define OPT_DEBUG 'd' -#define OPT_CACHE_SIZE 'c' -#define OPT_REMOVE 'r' -#define OPT_ADD 'a' -#define OPT_PATTERN 'm' -#define OPT_PRIORITY 'p' -#define OPT_STOW 's' - -/* The long options. */ -#define OPT_LONG_UNDERLYING "underlying" -#define OPT_LONG_WRITABLE "writable" -#define OPT_LONG_DEBUG "debug" -#define OPT_LONG_CACHE_SIZE "cache-size" -#define OPT_LONG_REMOVE "remove" -#define OPT_LONG_ADD "add" -#define OPT_LONG_PATTERN "match" -#define OPT_LONG_PRIORITY "priority" -#define OPT_LONG_STOW "stow" - -#define OPT_LONG(o) "--" o - -/* The final argp parser for runtime arguments. */ -extern struct argp argp_startup; - -/* The final argp parser for startup arguments. */ -extern struct argp argp_runtime; - -#define ULFS_MODE_ADD 0 -#define ULFS_MODE_REMOVE 1 |