~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tzfile.h

  • 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:
39
39
#define TZ_MAGIC        "TZif"
40
40
 
41
41
struct tzhead {
42
 
        uchar   tzh_magic[4];           /* TZ_MAGIC */
43
 
        uchar   tzh_reserved[16];       /* reserved for future use */
44
 
        uchar   tzh_ttisgmtcnt[4];      /* coded number of trans. time flags */
45
 
        uchar   tzh_ttisstdcnt[4];      /* coded number of trans. time flags */
46
 
        uchar   tzh_leapcnt[4];         /* coded number of leap seconds */
47
 
        uchar   tzh_timecnt[4];         /* coded number of transition times */
48
 
        uchar   tzh_typecnt[4];         /* coded number of local time types */
49
 
        uchar   tzh_charcnt[4];         /* coded number of abbr. chars */
 
42
        unsigned char   tzh_magic[4];           /* TZ_MAGIC */
 
43
        unsigned char   tzh_reserved[16];       /* reserved for future use */
 
44
        unsigned char   tzh_ttisgmtcnt[4];      /* coded number of trans. time flags */
 
45
        unsigned char   tzh_ttisstdcnt[4];      /* coded number of trans. time flags */
 
46
        unsigned char   tzh_leapcnt[4];         /* coded number of leap seconds */
 
47
        unsigned char   tzh_timecnt[4];         /* coded number of transition times */
 
48
        unsigned char   tzh_typecnt[4];         /* coded number of local time types */
 
49
        unsigned char   tzh_charcnt[4];         /* coded number of abbr. chars */
50
50
};
51
51
 
52
52
/*