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.5 2006-01-23 13:32:29 dockes Exp $ (C) 2004 J.F.Dockes";
2
static char rcsid[] = "@(#$Id: wipedir.cpp,v 1.6 2007-12-13 06:58:22 dockes Exp $ (C) 2004 J.F.Dockes";
3
#endif
3
#endif
4
/*
4
/*
5
 *   This program is free software; you can redistribute it and/or modify
5
 *   This program is free software; you can redistribute it and/or modify
6
 *   it under the terms of the GNU General Public License as published by
6
 *   it under the terms of the GNU General Public License as published by
7
 *   the Free Software Foundation; either version 2 of the License, or
7
 *   the Free Software Foundation; either version 2 of the License, or
...
...
23
#include <fcntl.h>
23
#include <fcntl.h>
24
#include <dirent.h>
24
#include <dirent.h>
25
#include <sys/stat.h>
25
#include <sys/stat.h>
26
#include <errno.h>
26
#include <errno.h>
27
27
28
#include <cstring>
28
#include <string>
29
#include <string>
29
#ifndef NO_NAMESPACES
30
#ifndef NO_NAMESPACES
30
using namespace std;
31
using namespace std;
31
#endif /* NO_NAMESPACES */
32
#endif /* NO_NAMESPACES */
32
33