~ubuntu-branches/ubuntu/lucid/libtasn1-3/lucid-updates

« back to all changes in this revision

Viewing changes to gl/stdlib.in.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2008-09-20 08:43:45 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080920084345-4zc3avwxte2l12nw
Tags: 1.5-1
* New upstream bugfix release.
* Drop tetex-bin Build-Depends alternative.

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
#endif
177
177
 
178
178
 
 
179
#if @GNULIB_RPMATCH@
 
180
# if !@HAVE_RPMATCH@
 
181
/* Test a user response to a question.
 
182
   Return 1 if it is affirmative, 0 if it is negative, or -1 if not clear.  */
 
183
extern int rpmatch (const char *response);
 
184
# endif
 
185
#elif defined GNULIB_POSIXCHECK
 
186
# undef rpmatch
 
187
# define rpmatch(r) \
 
188
    (GL_LINK_WARNING ("rpmatch is unportable - " \
 
189
                      "use gnulib module rpmatch for portability"), \
 
190
     rpmatch (r))
 
191
#endif
 
192
 
 
193
 
179
194
#if @GNULIB_SETENV@
180
195
# if !@HAVE_SETENV@
181
196
/* Set NAME to VALUE in the environment.