|
a/src/utils/copyfile.cpp |
|
b/src/utils/copyfile.cpp |
1 |
#ifndef lint
|
1 |
#ifndef lint
|
2 |
static char rcsid[] = "@(#$Id: copyfile.cpp,v 1.3 2006-01-23 13:32:28 dockes Exp $ (C) 2005 J.F.Dockes";
|
2 |
static char rcsid[] = "@(#$Id: copyfile.cpp,v 1.4 2007-12-13 06:58:22 dockes Exp $ (C) 2005 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
|
|
... |
|
... |
20 |
|
20 |
|
21 |
#include <stdio.h>
|
21 |
#include <stdio.h>
|
22 |
#include <fcntl.h>
|
22 |
#include <fcntl.h>
|
23 |
#include <errno.h>
|
23 |
#include <errno.h>
|
24 |
#include <unistd.h>
|
24 |
#include <unistd.h>
|
|
|
25 |
#include <cstring>
|
25 |
|
26 |
|
26 |
#include <string>
|
27 |
#include <string>
|
27 |
using std::string;
|
28 |
using std::string;
|
28 |
|
29 |
|
29 |
#include "debuglog.h"
|
30 |
#include "debuglog.h"
|