Switch to unified view
a/src/utils/wipedir.cpp | b/src/utils/wipedir.cpp | ||
---|---|---|---|
1 | #ifndef lint |
1 | #ifndef lint |
2 | static char rcsid[] = "@(#$Id: wipedir.cpp,v 1.2 2005-04-06 10:20:11 dockes Exp $ (C) 2004 J.F.Dockes"; |
2 | static char rcsid[] = "@(#$Id: wipedir.cpp,v 1.3 2005-11-24 07:16:16 dockes Exp $ (C) 2004 J.F.Dockes"; |
3 | #endif |
3 | #endif |
4 | 4 | ||
5 | #ifndef TEST_WIPEDIR |
5 | #ifndef TEST_WIPEDIR |
6 | #include <unistd.h> |
6 | #include <unistd.h> |
7 | #include <fcntl.h> |
7 | #include <fcntl.h> |
8 | #include <dirent.h> |
8 | #include <dirent.h> |
9 | #include <sys/stat.h> |
9 | #include <sys/stat.h> |
10 | #include <errno.h> |
10 | #include <errno.h> |
11 | 11 | ||
12 | #include <string> |
12 | #include <string> |
13 | #ifndef NO_NAMESPACES |
||
13 | using namespace std; |
14 | using namespace std; |
15 | #endif /* NO_NAMESPACES */ |
||
14 | 16 | ||
15 | #include "debuglog.h" |
17 | #include "debuglog.h" |
16 | #include "pathut.h" |
18 | #include "pathut.h" |
17 | #include "wipedir.h" |
19 | #include "wipedir.h" |
18 | 20 |