~ubuntu-branches/ubuntu/saucy/gengetopt/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/test_conf_parser_cmd.h.test

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-05-09 12:48:17 UTC
  • mfrom: (16.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130509124817-ex5jkvyh7cu8o22c
Tags: 2.22.6-2
* Upload to unstable.
* Fix VCS URLs.
* Bump Standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
  long double longdouble_arg;   /**< @brief longdouble option.  */
69
69
  char * longdouble_orig;       /**< @brief longdouble option original value given at command line.  */
70
70
  const char *longdouble_help; /**< @brief longdouble option help description.  */
71
 
  #ifdef HAVE_LONG_LONG
 
71
  #if defined(HAVE_LONG_LONG) || defined(HAVE_LONG_LONG_INT)
72
72
  long long int longlong_arg;   /**< @brief longlong option.  */
73
73
  #else
74
74
  long longlong_arg;    /**< @brief longlong option.  */
154
154
extern const char *my_args_info_purpose;
155
155
/** @brief the usage string of the program */
156
156
extern const char *my_args_info_usage;
 
157
/** @brief the description string of the program */
 
158
extern const char *my_args_info_description;
157
159
/** @brief all the lines making the help output */
158
160
extern const char *my_args_info_help[];
159
161