~drizzle-trunk/drizzle/development

1712.1.1 by Monty Taylor
Merged libdrizzle directly into tree.
1
/*
2
 * Drizzle Client & Protocol Library
3
 *
4
 * Copyright (C) 2008 Eric Day (eday@oddments.org)
5
 * All rights reserved.
6
 *
7
 * Use and distribution licensed under the BSD license.  See
1799.2.3 by Monty Taylor
Reference root BSD copying file.
8
 * the COPYING.BSD file in the root source directory for full text.
1712.1.1 by Monty Taylor
Merged libdrizzle directly into tree.
9
 */
10
11
/**
12
 * @file
13
 * @brief System Include Files
14
 */
15
16
#ifndef __DRIZZLE_COMMON_H
17
#define __DRIZZLE_COMMON_H
18
19
#include "config.h"
20
21
#define HAVE_VISIBILITY 1
22
23
#include "drizzle_client.h"
24
#include "drizzle_server.h"
25
26
#include <assert.h>
27
#include <errno.h>
28
#include <fcntl.h>
29
#include <netinet/tcp.h>
30
#include <stdarg.h>
31
#include <stdio.h>
32
#include <stdlib.h>
33
#include <string.h>
34
#include <sys/uio.h>
35
#include <unistd.h>
1877.1.5 by Andrew Hutchings
Fix min() usage for 32bit
36
#include <signal.h>
1712.1.1 by Monty Taylor
Merged libdrizzle directly into tree.
37
38
#include "drizzle_local.h"
39
#include "conn_local.h"
40
#include "pack.h"
41
#include "state.h"
42
#include "sha1.h"
43
44
#endif /* __DRIZZLE_COMMON_H */