~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_global.h

  • Committer: Brian Aker
  • Date: 2008-07-24 01:17:13 UTC
  • mfrom: (202.1.18 codestyle)
  • Revision ID: brian@tangent.org-20080724011713-5jceruz4bd4oawaq
Merge Monty's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
#endif
261
261
 
262
262
#include <errno.h>                              /* Recommended by debian */
263
 
/* We need the following to go around a problem with openssl on solaris */
264
 
#if defined(HAVE_CRYPT_H)
265
 
#include <crypt.h>
266
 
#endif
267
263
 
268
264
#if defined(HAVE_STDINT_H)
269
265
/* We are mixing C and C++, so we wan the C limit macros in the C++ too */
604
600
#endif
605
601
 
606
602
#if !defined(HAVE_ULONG) && !defined(__USE_MISC)
607
 
typedef uint32_t        ulong;            /* Short for unsigned long */
 
603
typedef unsigned long ulong;              /* Short for unsigned long */
608
604
#endif
609
605
 
610
606
#define MY_ERRPTR ((void*)(intptr)1)