~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_open.c

  • Committer: Brian Aker
  • Date: 2008-07-08 01:31:43 UTC
  • Revision ID: brian@tangent.org-20080708013143-cxed3zfbzwr1t0wp
DOS removal. DOS... hard to believe aye?

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include "myisamdef.h"
19
19
#include <m_ctype.h>
20
20
 
21
 
#if defined(MSDOS) || defined(__WIN__)
22
 
#ifdef __WIN__
23
 
#include <fcntl.h>
24
 
#else
25
 
#include <process.h>                    /* Prototype for getpid */
26
 
#endif
27
 
#endif
28
 
#ifdef VMS
29
 
#include "static.c"
30
 
#endif
31
 
 
32
21
static void setup_key_functions(MI_KEYDEF *keyinfo);
33
22
#define get_next_element(to,pos,size) { memcpy((char*) to,pos,(size_t) size); \
34
23
                                        pos+=size;}