Update to 2.1.x development version
[glibc/history.git] / argp / argp-namefrob.h
blobfab7c9d94ab24ad6ab4b4d9efeb8d0ba9983d537
1 /* Name frobnication for compiling argp outside of glibc
2 Copyright (C) 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Miles Bader <miles@gnu.ai.mit.edu>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #if !_LIBC
22 /* This code is written for inclusion in gnu-libc, and uses names in the
23 namespace reserved for libc. If we're not compiling in libc, define those
24 names to be the normal ones instead. */
26 /* argp-parse functions */
27 #undef __argp_parse
28 #define __argp_parse argp_parse
29 #undef __option_is_end
30 #define __option_is_end _option_is_end
31 #undef __option_is_short
32 #define __option_is_short _option_is_short
34 /* argp-help functions */
35 #undef __argp_help
36 #define __argp_help argp_help
37 #undef __argp_error
38 #define __argp_error argp_error
39 #undef __argp_failure
40 #define __argp_failure argp_failure
41 #undef __argp_state_help
42 #define __argp_state_help argp_state_help
43 #undef __argp_usage
44 #define __argp_usage argp_usage
46 /* argp-fmtstream functions */
47 #undef __argp_make_fmtstream
48 #define __argp_make_fmtstream argp_make_fmtstream
49 #undef __argp_fmtstream_free
50 #define __argp_fmtstream_free argp_fmtstream_free
51 #undef __argp_fmtstream_putc
52 #define __argp_fmtstream_putc argp_fmtstream_putc
53 #undef __argp_fmtstream_puts
54 #define __argp_fmtstream_puts argp_fmtstream_puts
55 #undef __argp_fmtstream_write
56 #define __argp_fmtstream_write argp_fmtstream_write
57 #undef __argp_fmtstream_printf
58 #define __argp_fmtstream_printf argp_fmtstream_printf
59 #undef __argp_fmtstream_set_lmargin
60 #define __argp_fmtstream_set_lmargin argp_fmtstream_set_lmargin
61 #undef __argp_fmtstream_set_rmargin
62 #define __argp_fmtstream_set_rmargin argp_fmtstream_set_rmargin
63 #undef __argp_fmtstream_set_wmargin
64 #define __argp_fmtstream_set_wmargin argp_fmtstream_set_wmargin
65 #undef __argp_fmtstream_point
66 #define __argp_fmtstream_point argp_fmtstream_point
67 #undef __argp_fmtstream_update
68 #define __argp_fmtstream_update _argp_fmtstream_update
69 #undef __argp_fmtstream_ensure
70 #define __argp_fmtstream_ensure _argp_fmtstream_ensure
71 #undef __argp_fmtstream_lmargin
72 #define __argp_fmtstream_lmargin argp_fmtstream_lmargin
73 #undef __argp_fmtstream_rmargin
74 #define __argp_fmtstream_rmargin argp_fmtstream_rmargin
75 #undef __argp_fmtstream_wmargin
76 #define __argp_fmtstream_wmargin argp_fmtstream_wmargin
78 /* normal libc functions we call */
79 #undef __sleep
80 #define __sleep sleep
81 #undef __strcasecmp
82 #define __strcasecmp strcasecmp
83 #undef __vsnprintf
84 #define __vsnprintf vsnprintf
86 #endif /* !_LIBC */
88 #ifndef __set_errno
89 #define __set_errno(e) (errno = (e))
90 #endif