Mercurial > hg > octave-nkf > gnulib-hg
annotate lib/argp-pin.c @ 8623:27cfd50b8f6c
Fix missing escape.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Tue, 03 Apr 2007 22:45:13 +0000 |
parents | 2036f2f175db |
children | bbbbbf4cd1c5 |
rev | line source |
---|---|
6477
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
1 /* Full and short program names for argp module |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
2 Copyright (C) 2005 Free Software Foundation, Inc. |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
3 |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
4 This program is free software; you can redistribute it and/or modify |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
5 it under the terms of the GNU General Public License as published by |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
6 the Free Software Foundation; either version 2, or (at your option) |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
7 any later version. |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
8 |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
9 This program is distributed in the hope that it will be useful, |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
10 but WITHOUT ANY WARRANTY; without even the implied warranty of |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
12 GNU General Public License for more details. |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
13 |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
14 You should have received a copy of the GNU General Public License along |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
15 with this program; if not, write to the Free Software Foundation, |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
17 |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
18 #ifdef HAVE_CONFIG_H |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
19 # include <config.h> |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
20 #endif |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
21 |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
22 #ifndef HAVE_PROGRAM_INVOCATION_SHORT_NAME |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
23 char *program_invocation_short_name = 0; |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
24 #endif |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
25 #ifndef HAVE_PROGRAM_INVOCATION_NAME |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
26 char *program_invocation_name = 0; |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
27 #endif |
2036f2f175db
Define program_invocation_name and program_invocation_short_name on systems that lack them.
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
diff
changeset
|
28 |