blob: c0c4a75f5644cf7a54893368a5bf0d369aca59db [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>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020014
15#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020016#include <types/capture.h>
17
18void **pool_capture = NULL;
19
20
21/*
22 * Local variables:
23 * c-indent-level: 8
24 * c-basic-offset: 8
25 * End:
26 */