blob: 3a7c2c6b1e21b9a024ffbea2e5d8f4f6ec3bfe0b [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Capture variables and functions.
3 *
4 * Copyright 2000-2006 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <stdlib.h>
14#include <types/capture.h>
15
16void **pool_capture = NULL;
17
18
19/*
20 * Local variables:
21 * c-indent-level: 8
22 * c-basic-offset: 8
23 * End:
24 */