~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to gnulib/getopt.c

  • Committer: Monty Taylor
  • Date: 2009-04-18 06:25:27 UTC
  • mto: (997.2.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 1003.
  • Revision ID: mordred@inaugust.com-20090418062527-08trhjviktq2svvv
Fixed gnulib updates.

Show diffs side-by-side

added added

removed removed

Lines of Context:
283
283
    }
284
284
  else
285
285
    d->__nonoption_flags_len = 0;
 
286
#else
 
287
  (void)argc;
 
288
  (void)argv;
286
289
#endif
287
290
 
288
291
  return optstring;
1101
1104
 
1102
1105
/* glibc gets a LSB-compliant getopt.
1103
1106
   Standalone applications get a POSIX-compliant getopt.  */
1104
 
#if _LIBC
 
1107
#if defined(_LIBC)
1105
1108
enum { POSIXLY_CORRECT = 0 };
1106
1109
#else
1107
1110
enum { POSIXLY_CORRECT = 1 };