~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/make-conf.c

  • Committer: Monty Taylor
  • Date: 2008-08-04 19:37:18 UTC
  • mto: (261.2.2 codestyle)
  • mto: This revision was merged to the branch mainline in revision 262.
  • Revision ID: monty@inaugust.com-20080804193718-f0rz13uli4429ozb
Changed gettext_noop() to N_()

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
#define ROW_LEN   16
42
42
 
43
 
void print_array(const char *name, const unsigned char *array, uint32_t size);
 
43
void print_array(const char *name, const uchar *array, uint size);
44
44
 
45
45
int main(void)
46
46
{
56
56
  exit(EXIT_SUCCESS);
57
57
}
58
58
 
59
 
void print_array(const char *name, const unsigned char *array, uint32_t size)
 
59
void print_array(const char *name, const uchar *array, uint size)
60
60
{
61
 
  uint32_t i;
 
61
  uint i;
62
62
 
63
63
  printf("\n# The %s array must have %d elements.\n", name, size);
64
64