~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to gnulib/getopt.c

  • Committer: Monty Taylor
  • Date: 2009-07-26 21:24:10 UTC
  • mto: (1093.7.1 captain)
  • mto: This revision was merged to the branch mainline in revision 1101.
  • Revision ID: mordred@inaugust.com-20090726212410-bxek3r54iezwvlsw
Tured off warnings for gnulib build. Stop innobase from setting global CFLAGS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1111
1111
#endif
1112
1112
 
1113
1113
int
1114
 
getopt (int argc, char **argv, const char *optstring)
 
1114
getopt (int argc, char *const *argv, const char *optstring)
1115
1115
{
1116
 
  return _getopt_internal (argc, argv, optstring, NULL, NULL, 0,
 
1116
  return _getopt_internal (argc, (char **) argv, optstring, NULL, NULL, 0,
1117
1117
                           POSIXLY_CORRECT);
1118
1118
}
1119
1119