blob: caf73dbacd58638dacfc74cb930ed54fdc88c3c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- util.cpp.orig 2001-10-10 12:24:27 UTC
+++ util.cpp
@@ -18,9 +18,13 @@
* Boston, MA 02111-1307, USA.
*
*/
+
+using namespace std;
+
#include "util.h"
#include <map>
#include <ctype.h>
+#include <cstring>
#include <sys/param.h>
#include <stdio.h>
#include <unistd.h>
@@ -35,7 +39,6 @@ extern "C"{
#include "fetch.h"
}
#endif
-using namespace std;
static map<string,int> gsSpecialTable;
|