~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/ptr_cmp.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
  The bytes are compare as unsigned chars.
20
20
  */
21
21
 
22
 
#include "config.h"
23
 
#include "drizzled/internal/my_sys.h"
24
 
 
25
 
#include <assert.h>
26
 
 
27
 
#include "plugin/myisam/myisampack.h"
28
 
 
29
 
namespace drizzled
30
 
{
31
 
namespace internal
32
 
{
 
22
#include "mysys_priv.h"
 
23
#include <storage/myisam/myisampack.h>
33
24
 
34
25
static int ptr_compare(size_t *compare_length, unsigned char **a, unsigned char **b);
35
26
static int ptr_compare_0(size_t *compare_length, unsigned char **a, unsigned char **b);
199
190
 return pos;
200
191
}
201
192
 
202
 
} /* namespace internal */
203
 
} /* namespace drizzled */