~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to gnulib/getopt.c

  • Committer: Brian Aker
  • Date: 2009-02-04 21:00:07 UTC
  • mfrom: (779.3.54 devel)
  • Revision ID: brian@tangent.org-20090204210007-3kpwy2l3x4wuwl96
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#ifdef _LIBC
34
34
# include <libintl.h>
35
35
#else
36
 
# include "gettext.h"
37
 
# define _(msgid) gettext (msgid)
 
36
# include "drizzled/gettext.h"
38
37
#endif
39
38
 
40
39
#if defined _LIBC && defined USE_IN_LIBIO
1101
1100
 
1102
1101
/* glibc gets a LSB-compliant getopt.
1103
1102
   Standalone applications get a POSIX-compliant getopt.  */
1104
 
#if _LIBC
 
1103
#ifdef _LIBC
1105
1104
enum { POSIXLY_CORRECT = 0 };
1106
1105
#else
1107
1106
enum { POSIXLY_CORRECT = 1 };