-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4df4080
commit 4a9ea4c
Showing
43 changed files
with
8,635 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
AC_PREREQ(2.65) | ||
AC_INIT([libdicl], | ||
[0.1.5], | ||
[0.1.6], | ||
[[email protected]]) | ||
|
||
AC_SUBST(ACLOCAL_AMFLAGS, "-I macros") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* Default definition for ARGP_PROGRAM_BUG_ADDRESS. | ||
Copyright (C) 1996-2019 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
Written by Miles Bader <[email protected]>. | ||
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 <https://www.gnu.org/licenses/>. */ | ||
|
||
/* If set by the user program, it should point to string that is the | ||
bug-reporting address for the program. It will be printed by argp_help if | ||
the ARGP_HELP_BUG_ADDR flag is set (as it is by various standard help | ||
messages), embedded in a sentence that says something like "Report bugs to | ||
ADDR." */ | ||
const char *argp_program_bug_address | ||
/* This variable should be zero-initialized. On most systems, putting it into | ||
BSS is sufficient. Not so on Mac OS X 10.3 and 10.4, see | ||
<https://lists.gnu.org/r/bug-gnulib/2009-01/msg00329.html> | ||
<https://lists.gnu.org/r/bug-gnulib/2009-08/msg00096.html>. */ | ||
#if defined __ELF__ | ||
/* On ELF systems, variables in BSS behave well. */ | ||
#else | ||
= (const char *) 0 | ||
#endif | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* Default definition for ARGP_ERR_EXIT_STATUS | ||
Copyright (C) 1997, 2009-2019 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
Written by Miles Bader <[email protected]>. | ||
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 <https://www.gnu.org/licenses/>. */ | ||
|
||
#ifdef HAVE_CONFIG_H | ||
# include <config.h> | ||
#endif | ||
|
||
#include <sysexits.h> | ||
|
||
#include "argp.h" | ||
|
||
/* The exit status that argp will use when exiting due to a parsing error. | ||
If not defined or set by the user program, this defaults to EX_USAGE from | ||
<sysexits.h>. */ | ||
error_t argp_err_exit_status = EX_USAGE; |
Oops, something went wrong.