~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/make-conf.c

  • Committer: Brian Aker
  • Date: 2008-10-06 05:57:49 UTC
  • Revision ID: brian@tangent.org-20081006055749-svg700gciuqi0zu1
Remove all of uchar.

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 uchar *array, uint size);
 
43
void print_array(const char *name, const unsigned char *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 uchar *array, uint size)
 
59
void print_array(const char *name, const unsigned char *array, uint size)
60
60
{
61
61
  uint i;
62
62