Mercurial > routeflapper
annotate src/includes.h @ 4:180d26aa2a17
Fedora 9 compile and const correctness.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 12 Jun 2008 17:51:33 -0700 |
parents | 48d06780cf77 |
children |
rev | line source |
---|---|
0 | 1 /* |
2 | |
3 Copyright (c) 2007 Carl Byington - 510 Software Group, released under | |
4 the GPL version 3 or any later version at your choice available at | |
5 http://www.gnu.org/licenses/gpl-3.0.txt | |
6 | |
7 */ | |
8 | |
9 #ifdef HAVE_CONFIG_H | |
10 #include <config.h> | |
11 #endif | |
12 | |
13 #include <stdio.h> | |
14 #include <unistd.h> | |
15 #include <regex.h> | |
16 #include <sys/types.h> | |
17 #include <sys/stat.h> | |
18 #include <fstream> | |
19 #include <map> | |
20 #include <list> | |
21 #include <set> | |
22 #include <ctype.h> | |
4
180d26aa2a17
Fedora 9 compile and const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
23 #include <string.h> |
180d26aa2a17
Fedora 9 compile and const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
24 #include <stdlib.h> |
0 | 25 |
26 #include "tokenizer.h" | |
27 #include "routeconfig.h" | |
28 #include "routeflapper.h" |