~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/typelib.c

  • Committer: Brian Aker
  • Date: 2008-07-14 16:09:55 UTC
  • Revision ID: brian@tangent.org-20080714160955-v5nzzyjj5hhv7bz6
Removing a few "additional" ways of saying uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
    a integer representation of the supplied string
163
163
*/
164
164
 
165
 
my_uint64_t find_typeset(char *x, TYPELIB *lib, int *err)
 
165
uint64_t find_typeset(char *x, TYPELIB *lib, int *err)
166
166
{
167
 
  my_uint64_t result;
 
167
  uint64_t result;
168
168
  int find;
169
169
  char *i;
170
170
  DBUG_ENTER("find_set");