1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
$FreeBSD$
--- statement.cc.orig Tue Feb 17 10:31:50 2004
+++ statement.cc Tue Feb 17 10:32:53 2004
@@ -975,18 +975,18 @@
// Define the search strings.
// ================================================
const char* prefixes[] = {
- {"dll_"},{"DLL_"},
- {"include_"},{"INCLUDE_"},
- {"included_"},{"INCLUDED_"},
- 0 };
+ "dll_","DLL_",
+ "include_","INCLUDE_",
+ "included_","INCLUDED_",
+ NULL };
const char* suffixes[] = {
- {"_dll"},{"_DLL"},
- {"_h"},{"_H"},
- {"_hh"},{"_HH"},
- {"_include"},{"_INCLUDE"},
- {"_included"},{"_INCLUDED"},
- {"_included_"},{"_INCLUDED_"},
- 0 };
+ "_dll","_DLL",
+ "_h","_H",
+ "_hh","_HH",
+ "_include","_INCLUDE",
+ "_included","_INCLUDED",
+ "_included_","_INCLUDED_",
+ NULL };
// ================================================
// Check the prefixes.
// ================================================
|