~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/korr.h

  • Committer: Stewart Smith
  • Date: 2009-10-19 06:35:52 UTC
  • mto: This revision was merged to the branch mainline in revision 1192.
  • Revision ID: stewart@flamingspork.com-20091019063552-768xbl32pqo46eco
remove unused int4net() macro from korr.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
194
194
#endif /* __i386__ */
195
195
 
196
196
/*
197
 
  Macro for reading 32-bit integer from network byte order (big-endian)
198
 
  from unaligned memory location.
199
 
*/
200
 
#define int4net(A)        (int32_t) (((uint32_t) ((unsigned char) (A)[3]))        |\
201
 
                                  (((uint32_t) ((unsigned char) (A)[2])) << 8)  |\
202
 
                                  (((uint32_t) ((unsigned char) (A)[1])) << 16) |\
203
 
                                  (((uint32_t) ((unsigned char) (A)[0])) << 24))
204
 
/*
205
197
  Define-funktions for reading and storing in machine format from/to
206
198
  short/long to/from some place in memory V should be a (not
207
199
  register) variable, M is a pointer to byte