~mkindahl/drizzle/remove-mem-casts

« back to all changes in this revision

Viewing changes to storage/innobase/include/mach0data.h

  • Committer: Brian Aker
  • Date: 2008-07-23 00:11:39 UTC
  • Revision ID: brian@tangent.org-20080723001139-967ewfngqqotwb6e
Removed final uint dead types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
to the canonical format, for fast bytewise equality test
59
59
against memory. */
60
60
UNIV_INLINE
61
 
uint16
 
61
uint16_t
62
62
mach_encode_2(
63
63
/*==========*/
64
64
                        /* out: 16-bit integer in canonical format */
72
72
mach_decode_2(
73
73
/*==========*/
74
74
                        /* out: integer in machine-dependent format */
75
 
        uint16  n);     /* in: 16-bit integer in canonical format */
 
75
        uint16_t        n);     /* in: 16-bit integer in canonical format */
76
76
/***********************************************************
77
77
The following function is used to store data in 3 consecutive
78
78
bytes. We store the most significant byte to the lowest address. */