summaryrefslogtreecommitdiff
path: root/gnu/argp-pv.c
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2012-10-25 12:29:46 -0700
committerAnas Nashif <anas.nashif@intel.com>2012-10-25 12:29:46 -0700
commitc42b3ab659c294e1c2a0de4b8bcbb4611eb3d005 (patch)
tree0116a99245903017b6839adc68b3cb2a900455a2 /gnu/argp-pv.c
downloadcpio-c42b3ab659c294e1c2a0de4b8bcbb4611eb3d005.tar.gz
cpio-c42b3ab659c294e1c2a0de4b8bcbb4611eb3d005.tar.bz2
cpio-c42b3ab659c294e1c2a0de4b8bcbb4611eb3d005.zip
Imported Upstream version 2.11upstream/2.11upstream
Diffstat (limited to 'gnu/argp-pv.c')
-rw-r--r--gnu/argp-pv.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/argp-pv.c b/gnu/argp-pv.c
new file mode 100644
index 0000000..5a8d45d
--- /dev/null
+++ b/gnu/argp-pv.c
@@ -0,0 +1,36 @@
+/* -*- buffer-read-only: t -*- vi: set ro: */
+/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+/* Default definition for ARGP_PROGRAM_VERSION.
+ Copyright (C) 1996, 1997, 1999, 2006, 2009, 2010 Free Software Foundation,
+ Inc.
+ This file is part of the GNU C Library.
+ Written by Miles Bader <miles@gnu.ai.mit.edu>.
+
+ 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 3 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, see <http://www.gnu.org/licenses/>. */
+
+/* If set by the user program to a non-zero value, then a default option
+ --version is added (unless the ARGP_NO_HELP flag is used), which will
+ print this string followed by a newline and exit (unless the
+ ARGP_NO_EXIT flag is used). Overridden by ARGP_PROGRAM_VERSION_HOOK. */
+const char *argp_program_version
+/* This variable should be zero-initialized. On most systems, putting it into
+ BSS is sufficient. Not so on MacOS X 10.3 and 10.4, see
+ <http://lists.gnu.org/archive/html/bug-gnulib/2009-01/msg00329.html>
+ <http://lists.gnu.org/archive/html/bug-gnulib/2009-08/msg00096.html>. */
+#if defined __ELF__
+ /* On ELF systems, variables in BSS behave well. */
+#else
+ = (const char *) 0
+#endif
+ ;